Skip to content

Commit

Permalink
configure.js: format javascript appropriately
Browse files Browse the repository at this point in the history
(Removed ;, as ; does not appear to be part of the coding guidelines for nodejs).
  • Loading branch information
yeerkkiller1 committed Jul 19, 2018
1 parent 86cddc1 commit 4f1493a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/configure.js
Expand Up @@ -292,7 +292,7 @@ function configure (gyp, argv, callback) {
output_dir = buildDir
}

var target_arch_gyp_variable = '<(target_arch)';
var target_arch_gyp_variable = '<(target_arch)'
if (process.platform === 'win32' && python.toLowerCase().endsWith('.bat')) {
// Windows will interpret python as a batch file, so we need to escape the '<' character
target_arch_gyp_variable = '^^^<(target_arch)'
Expand Down

0 comments on commit 4f1493a

Please sign in to comment.