Skip to content

Commit

Permalink
Fix escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
Sashko Stubailo committed Dec 14, 2016
1 parent 41c6539 commit 6d81cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ node -e "var package = require('./package.json'); \
delete package.babel; delete package.scripts; delete package.options; \
package.main = 'index.js'; \
var fs = require('fs'); \
fs.writeFileSync('./npm/version.js', 'module.exports = { version: "' + package.version + '" }'); \
fs.writeFileSync('./npm/version.js', 'module.exports = { version: \"' + package.version + '\" }'); \
fs.writeFileSync('./npm/package.json', JSON.stringify(package, null, 2));"

cp README.md npm/
Expand Down

0 comments on commit 6d81cab

Please sign in to comment.