We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a320a12 commit 1509f42Copy full SHA for 1509f42
ci/before_deploy.sh
@@ -7,9 +7,7 @@ package() {
7
fi
8
9
cp -f target/$TARGET/release/$BIN_NAME bin/$BIN_NAME_TAG
10
- cd bin || return 1
11
- sha256sum "$BIN_NAME_TAG" | tee "$BIN_NAME_TAG.sha256"
12
- cd -
+ sha256sum "bin/$BIN_NAME_TAG" | tee "bin/$BIN_NAME_TAG.sha256"
13
}
14
15
release_tag() {
install.sh
@@ -25,9 +25,7 @@ download() {
25
echo "Downloading bin/${name}..."
26
url=https://github.com/autozimu/LanguageClient-neovim/releases/download/$version/${1}
27
if (try_curl "$url" || try_wget "$url"); then
28
29
- sha256sum -c "$name.sha256" || return 1
30
+ sha256sum -c "bin/$name.sha256" || return 1
31
chmod a+x bin/$name
32
return
33
else
0 commit comments