From 594ca0fd5969d451388610630960cbc628f95eb2 Mon Sep 17 00:00:00 2001 From: Tim Robinson Date: Thu, 4 Feb 2016 03:49:42 +0000 Subject: [PATCH] Const should be capital --- node_modules/c9/gce.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node_modules/c9/gce.js b/node_modules/c9/gce.js index c0c8afd7..7b939527 100644 --- a/node_modules/c9/gce.js +++ b/node_modules/c9/gce.js @@ -1,13 +1,13 @@ var childProcess = require("child_process"); -var gssh = __dirname + "/../../scripts/gssh"; +var GSSH = __dirname + "/../../scripts/gssh"; function findServers(pattern, options, callback) { if (!callback && typeof options == "function") { return findServers(pattern, {}, options); } - childProcess.exec(gssh + " --print-names " + pattern, function (err, stdout) { + childProcess.exec(GSSH + " --print-names " + pattern, function (err, stdout) { if (err) return callback(err); var serverNames = stdout.split("\n") @@ -29,7 +29,7 @@ function runCommand(pattern, command, options, callback) { parallel = " -P" } - var gsshCommand = gssh + " " + parallel + " " + pattern + " '" + command + "'"; + var gsshCommand = GSSH + " " + parallel + " " + pattern + " '" + command + "'"; childProcess.exec(gsshCommand, function (err, stdout) { return callback(err, stdout); });