diff options
| author | Jan Niklas Hasse <jhasse@bixense.com> | 2018-04-25 09:59:55 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-25 09:59:55 +0200 |
| commit | 77b323a5be7215d7601b217c37ca13ec62ea2c1c (patch) | |
| tree | d4b3b3409c4c29f2b1fe62ac446ae605e6a7398c | |
| parent | f6530368eb31734734c0e1e7ce990c0cb93f0b24 (diff) | |
| download | vcpkg-77b323a5be7215d7601b217c37ca13ec62ea2c1c.tar.gz vcpkg-77b323a5be7215d7601b217c37ca13ec62ea2c1c.zip | |
Add Bash shebang to bootstrap script
| -rwxr-xr-x | bootstrap-vcpkg.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bootstrap-vcpkg.sh b/bootstrap-vcpkg.sh index 4bfb17308..67102ca25 100755 --- a/bootstrap-vcpkg.sh +++ b/bootstrap-vcpkg.sh @@ -1,2 +1,4 @@ +#!/usr/bin/env bash + vcpkgRootDir=$(X= cd -- "$(dirname -- "$0")" && pwd -P) -$vcpkgRootDir/scripts/bootstrap.sh
\ No newline at end of file +$vcpkgRootDir/scripts/bootstrap.sh |
