File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ const path = require("path");
22const combyne = require ( "combyne" ) ;
33const promisify = require ( "promisify-node" ) ;
44const fse = promisify ( require ( "fs-extra" ) ) ;
5- const js_beautify = require ( ' js-beautify' ) . js_beautify ;
5+ const js_beautify = require ( " js-beautify" ) . js_beautify ;
66const 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 ) ;
You can’t perform that action at this time.
0 commit comments