summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2020-03-29 19:38:15 -0700
committerGitHub <noreply@github.com>2020-03-29 19:38:15 -0700
commit3310eaab99e1ceee270a70cac6fe88831d65040a (patch)
tree66c608accae57863b53a5ef6fd4b32b627e547f4 /bin
parent757d768a07ce5829cd63dd3c3c9313503f0b5d00 (diff)
downloadspack-3310eaab99e1ceee270a70cac6fe88831d65040a.tar.gz
spack-3310eaab99e1ceee270a70cac6fe88831d65040a.tar.bz2
spack-3310eaab99e1ceee270a70cac6fe88831d65040a.tar.xz
spack-3310eaab99e1ceee270a70cac6fe88831d65040a.zip
spack-python should exec `spack python` (#15738)
The current implementation of `spack-python` will leave an extra shell around while it runs. That shell should really replace itself with spack. - [x] add exec to spack-python script
Diffstat (limited to 'bin')
-rwxr-xr-xbin/spack-python2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/spack-python b/bin/spack-python
index b81c8b7dbb..22141b46d6 100755
--- a/bin/spack-python
+++ b/bin/spack-python
@@ -22,4 +22,4 @@
#
# This is compatible across platforms.
#
-/usr/bin/env spack python "$@"
+exec /usr/bin/env spack python "$@"