Skip to content

Commit a2bcc07

Browse files
authored
minor update
Changing some 'let' declarations to 'const' ones for the TRAVIS CI builder.
1 parent ef1445f commit a2bcc07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/runner.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,13 @@ export default class Runner {
155155
// cmdArgs = customed command args from:
156156
// - a user's profil
157157
// - the 'Configure Run Options' panel
158-
let cmdArgs = this.scriptOptions.cmdArgs;
158+
const cmdArgs = this.scriptOptions.cmdArgs;
159159

160160
// Let's overdrive the default args with the customed ones
161161
let args = (cmdArgs.length) ? cmdArgs : extraArgs;
162162

163163
// Do not forget to concat the script args after the command args
164-
let scriptArgs = this.scriptOptions.scriptArgs;
164+
const scriptArgs = this.scriptOptions.scriptArgs;
165165
args = args.concat(scriptArgs);
166166

167167
const projectPath = this.getProjectPath || '';

0 commit comments

Comments
 (0)