From 4f1493a7d011fa17d39cd27b0c4911b26acf18bf Mon Sep 17 00:00:00 2001 From: yeerkkiller1 Date: Wed, 18 Jul 2018 21:53:14 -0400 Subject: [PATCH] configure.js: format javascript appropriately (Removed ;, as ; does not appear to be part of the coding guidelines for nodejs). --- lib/configure.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/configure.js b/lib/configure.js index 1d0b654e01..6ed8be3b24 100644 --- a/lib/configure.js +++ b/lib/configure.js @@ -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)'