1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-11 21:13:46 -05:00

Fix argument that cannot be sent to bash via env

/usr/bin/env seems to have problems with arguments to bash on some
platforms. To bypass this, use set -e instead.
This commit is contained in:
Andreas Johansson
2011-08-12 11:33:45 +02:00
parent 398e963312
commit 6938692ca2
15 changed files with 32 additions and 16 deletions

View File

@@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
shopt -s nullglob