diff options
author | Anton Kuroedov <xecu91 at gmail com> | 2023-02-09 12:48:06 +0300 |
---|---|---|
committer | Anton Kuroedov <xecu91 at gmail com> | 2023-02-09 12:48:06 +0300 |
commit | 86b9e582aeb5c61467e312626961a90eb39315a7 (patch) | |
tree | ae529cd305a2efc7086e36b5f9b3a05dde2dce87 /make.sh | |
parent | 54985b6ba69478dde5e7fa107ccdd74735c3811b (diff) | |
download | lua-language-server-86b9e582aeb5c61467e312626961a90eb39315a7.zip |
Made make.sh executable, using bash in shebang, using pushd/popd instead of cd
Diffstat (limited to 'make.sh')
-rwxr-xr-x[-rw-r--r--] | make.sh | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,7 @@ +#!/usr/bin/env bash + git submodule update --init --recursive -cd 3rd/luamake +pushd 3rd/luamake ./compile/install.sh -cd ../.. +popd ./3rd/luamake/luamake rebuild |