diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-03-10 20:48:38 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-03-10 20:48:38 -0800 |
commit | 16a74c6374e747e30aaec01894e2100ebff36f2c (patch) | |
tree | 7d3d80d57ab3b4d68e1a7bbad292ab32adcb85fe /src/shell.js | |
parent | 551c2c8c863d76ccecdd0247a7d523dcd87dc993 (diff) |
better handling of detection of scriptArgs and arguments
Diffstat (limited to 'src/shell.js')
-rw-r--r-- | src/shell.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shell.js b/src/shell.js index bc527192..1648218a 100644 --- a/src/shell.js +++ b/src/shell.js @@ -42,9 +42,9 @@ if (ENVIRONMENT_IS_NODE) { this['read'] = function(f) { snarf(f) }; } - if (!this['arguments']) { + if (typeof scriptArgs != 'undefined') { arguments_ = scriptArgs; - } else { + } else if (typeof arguments != 'undefined') { arguments_ = arguments; } |