diff options
author | Mathew Robinson <chasinglogic@gmail.com> | 2019-08-07 10:50:12 -0400 |
---|---|---|
committer | Mathew Robinson <chasinglogic@gmail.com> | 2019-08-07 11:56:38 -0400 |
commit | 6978f67e7b4d86cf5cea0970ef7e3f9d8566bb29 (patch) | |
tree | cec4f229927bc0647f02a80966be41380a5690ce /src/mongo/dbtests | |
parent | 5a385bb97b9af3d2c02996bc25c121198e1d9d54 (diff) | |
download | mongo-6978f67e7b4d86cf5cea0970ef7e3f9d8566bb29.tar.gz |
SERVER-42408 Add dbtest Alias for Windows
Diffstat (limited to 'src/mongo/dbtests')
-rw-r--r-- | src/mongo/dbtests/SConscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/dbtests/SConscript b/src/mongo/dbtests/SConscript index c735b9cbf0a..6c2521001a2 100644 --- a/src/mongo/dbtests/SConscript +++ b/src/mongo/dbtests/SConscript @@ -176,4 +176,6 @@ if not has_option('noshell') and usemozjs: ) hygienic = get_option('install-mode') == 'hygienic' if not hygienic: - env.Install('#/', dbtest) + install_dbtest = env.Install('#/', dbtest) + if env.TargetOSIs("windows"): + env.Alias("dbtest", install_dbtest) |