Skip to content

Commit 3964cb0

Browse files
committed
fix: adjust elif statement to be compatible with dash (#160)
1 parent 37491c5 commit 3964cb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RELEASE_URL="https://github.com/kkoomen/vim-doge/releases/download/$PKG_VERSION"
3030

3131
if [ $OS = 'Darwin' ]; then
3232
TARGET="vim-doge-macos"
33-
elif [[ $OS == 'Linux' ]]; then
33+
elif [ $OS = 'Linux' ]; then
3434
TARGET="vim-doge-linux"
3535
else
3636
echo "vim-doge does not support your system"

0 commit comments

Comments
 (0)