Skip to content

Commit 1d9c17a

Browse files
committed
move single quotes to double quotes
1 parent 1cb7210 commit 1d9c17a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

generate/scripts/generateNativeCode.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const path = require("path");
22
const combyne = require("combyne");
33
const promisify = require("promisify-node");
44
const fse = promisify(require("fs-extra"));
5-
const js_beautify = require('js-beautify').js_beautify;
5+
const js_beautify = require("js-beautify").js_beautify;
66
const beautify = function (input) {
77
return js_beautify(input, {
88
"brace_style": "end-expand",
@@ -126,15 +126,15 @@ module.exports = function() {
126126

127127
utils.writeFile("../lib/enums.js", beautify(templates.enums.render(enabled)));
128128
}).then(function() {
129-
return exec('command -v astyle').then(function(astyle) {
129+
return exec("command -v astyle").then(function(astyle) {
130130
if (astyle) {
131131
return exec(
132-
'astyle --options=\".astylerc\" '
132+
"astyle --options=\".astylerc\" "
133133
+ path.resolve(__dirname, "../../src") + "/*.cc "
134134
+ path.resolve(__dirname, "../../include") + "/*.h"
135135
).then(function() {
136136
return exec(
137-
'rm '
137+
"rm "
138138
+ path.resolve(__dirname, "../../src") + "/*.cc.orig "
139139
+ path.resolve(__dirname, "../../include") + "/*.h.orig "
140140
);

0 commit comments

Comments
 (0)