From db0bce369cae7b34f5e6e1d690eb150564423864 Mon Sep 17 00:00:00 2001 From: Rico Tiongson Date: Tue, 7 Nov 2017 01:25:40 +0800 Subject: [PATCH] Update install Just a silly error in the install script. The command that should be tested should not be `git` but `comfortable-swipe`. --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index ff77fde..0b3d92b 100755 --- a/install +++ b/install @@ -2,7 +2,7 @@ DIR=$(dirname $0) PROGRAM=$HOME/.local/bin/comfortable-swipe -if [ -x "$(command -v git)" ]; then +if [ -x "$(command -v $PROGRAM)" ]; then # stop any running comfortable-swipe if it exists $PROGRAM stop fi