diff options
author | Johannes Wienke <languitar@semipol.de> | 2017-12-05 10:41:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-05 10:41:53 +0100 |
commit | a4566d16ea75ee121f7963f9f0563a37f2779797 (patch) | |
tree | 2a2c8b2c89bb090ea5fe8cf44af4c3f3da177bd8 /scripts | |
parent | a36635d29240ea4f460149b65e1f4281ab7725c3 (diff) | |
download | java-language-server-a4566d16ea75ee121f7963f9f0563a37f2779797.zip |
Shebang line in install.sh
The README states that this file is directly executable. But it is not without this line.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/install.sh b/scripts/install.sh index 1ddf723..ed231de 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -1,3 +1,5 @@ +#!/bin/bash + # Installs locally # You will need java, maven, vsce, and visual studio code to run this script set -e @@ -11,4 +13,4 @@ mvn package # Build vsix vsce package -o build.vsix -echo 'Install build.vsix using the extensions menu'
\ No newline at end of file +echo 'Install build.vsix using the extensions menu' |