Skip to content

Commit

Permalink
tools: fix shebang in packer/setup.sh
Browse files Browse the repository at this point in the history
Change shebang in script from `/bin/bash` to `/usr/bin/env bash`,
which fixed problems when `bash` is not available in standard location,
e.g., on non-Linux OSes such as FreeBSD.
  • Loading branch information
smlng committed Sep 16, 2019
1 parent 364c831 commit 9e87046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/tools/packer/setup.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash -eux
#!/usr/bin/env bash -eux

# inspired by https://github.com/boxcutter/ubuntu

Expand Down

0 comments on commit 9e87046

Please sign in to comment.