Skip to content

Commit

Permalink
Quoting paths appropriately
Browse files Browse the repository at this point in the history
  • Loading branch information
gmkurtzer committed Jun 26, 2017
1 parent 499d8a9 commit d410a4f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libexec/bootstrap-scripts/environment/exec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

for script in /.singularity.d/env/*.sh; do
if [ -f "$script" ]; then
. $script
. "$script"
fi
done
exec "$@"
2 changes: 1 addition & 1 deletion libexec/bootstrap-scripts/environment/run
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

for script in /.singularity.d/env/*.sh; do
if [ -f "$script" ]; then
. $script
. "$script"
fi
done

Expand Down
2 changes: 1 addition & 1 deletion libexec/bootstrap-scripts/environment/shell
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

for script in /.singularity.d/env/*.sh; do
if [ -f "$script" ]; then
. $script
. "$script"
fi
done

Expand Down
2 changes: 1 addition & 1 deletion libexec/bootstrap-scripts/environment/test
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

for script in /.singularity.d/env/*.sh; do
if [ -f "$script" ]; then
. $script
. "$script"
fi
done

Expand Down

0 comments on commit d410a4f

Please sign in to comment.