summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatt Belhorn <belhornmp@ornl.gov>2016-08-01 17:17:24 -0400
committerMatt Belhorn <belhornmp@ornl.gov>2016-08-01 17:17:24 -0400
commitae167c09fc4d3dc4b4ff90840bd70cd8648261ab (patch)
tree3d23e486b2cca5e92dd701b90be14a6cca90cbee /lib
parente864d2764171b2dbd539bac16dbb7a28910407a9 (diff)
downloadspack-ae167c09fc4d3dc4b4ff90840bd70cd8648261ab.tar.gz
spack-ae167c09fc4d3dc4b4ff90840bd70cd8648261ab.tar.bz2
spack-ae167c09fc4d3dc4b4ff90840bd70cd8648261ab.tar.xz
spack-ae167c09fc4d3dc4b4ff90840bd70cd8648261ab.zip
Prefers `bash` over `sh`.
Assuming a bash interactive environment will be correctly formed on login, we should prefer to probe the environment using a shell that reports itself as `bash` instead of `sh` which may not source files that set the environment modules in statements like: ``` case "$is" in bash) test -s /etc/bash.bashrc.local && . /etc/bash.bashrc.local ;; ksh) test -s /etc/ksh.kshrc.local && . /etc/ksh.kshrc.local ;; zsh) test -s /etc/zsh.zshrc.local && . /etc/zsh.zshrc.local ;; ash) test -s /etc/ash.ashrc.local && . /etc/ash.ashrc.local esac test -s /etc/sh.shrc.local && . /etc/sh.shrc.local ```
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/platforms/cray.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/platforms/cray.py b/lib/spack/spack/platforms/cray.py
index 68f1453edf..2883a35ec7 100644
--- a/lib/spack/spack/platforms/cray.py
+++ b/lib/spack/spack/platforms/cray.py
@@ -27,7 +27,7 @@ def _target_from_clean_env(name):
# CAUTION - $USER is generally needed to initialize the environment.
# There may be other variables needed for general success.
output = env('USER=%s' % os.environ['USER'],
- '/bin/sh', '--noprofile', '-c',
+ '/bin/bash', '--noprofile', '--norc', '-c',
'. /etc/profile; module list -lt',
output=str, error=str)
default_modules = [i for i in output.splitlines()