diff options
author | Mathew Robinson <chasinglogic@gmail.com> | 2019-12-17 14:40:28 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-02-13 15:21:41 +0000 |
commit | f31bc89f66632b2d521be2d076dc23f94ff663eb (patch) | |
tree | 6d2dc9562fcfcefacdb1278e78e2a88e49010911 /jstests/noPassthrough/shell_interactive.js | |
parent | 65c27c5f9899e2cf72b392a3f1174767afec8823 (diff) | |
download | mongo-f31bc89f66632b2d521be2d076dc23f94ff663eb.tar.gz |
SERVER-45048 Use hygienic builds in Evergreen
Diffstat (limited to 'jstests/noPassthrough/shell_interactive.js')
-rw-r--r-- | jstests/noPassthrough/shell_interactive.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthrough/shell_interactive.js b/jstests/noPassthrough/shell_interactive.js index ea23099a546..bfcbb0b81c8 100644 --- a/jstests/noPassthrough/shell_interactive.js +++ b/jstests/noPassthrough/shell_interactive.js @@ -6,7 +6,7 @@ if (!_isWindows()) { clearRawMongoProgramOutput(); - var rc = runProgram("./mongo", "--nodb", "--quiet", "--eval", "print(isInteractive())"); + var rc = runProgram("mongo", "--nodb", "--quiet", "--eval", "print(isInteractive())"); assert.eq(rc, 0); var output = rawMongoProgramOutput(); var response = (output.split('\n').slice(-2)[0]).split(' ')[1]; @@ -14,7 +14,7 @@ if (!_isWindows()) { // now try interactive clearRawMongoProgramOutput(); rc = runProgram( - "./mongo", "--nodb", "--quiet", "--shell", "--eval", "print(isInteractive()); quit()"); + "mongo", "--nodb", "--quiet", "--shell", "--eval", "print(isInteractive()); quit()"); assert.eq(rc, 0); output = rawMongoProgramOutput(); response = (output.split('\n').slice(-2)[0]).split(' ')[1]; |