diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2020-03-29 19:38:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-29 19:38:15 -0700 |
commit | 3310eaab99e1ceee270a70cac6fe88831d65040a (patch) | |
tree | 66c608accae57863b53a5ef6fd4b32b627e547f4 /bin/spack-python | |
parent | 757d768a07ce5829cd63dd3c3c9313503f0b5d00 (diff) | |
download | spack-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/spack-python')
-rwxr-xr-x | bin/spack-python | 2 |
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 "$@" |