From 89ed1f21f34679a71eeeaf0ddd0a0e834bcc6731 Mon Sep 17 00:00:00 2001 From: Joe Mordica Date: Wed, 1 May 2019 20:25:07 -0500 Subject: [PATCH] removed wildcard --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 0015f23..3b4519d 100644 --- a/install.sh +++ b/install.sh @@ -35,7 +35,7 @@ sudo tar xvzf ${download_file} -C /tmp/ [ $? != 0 ] && die "Unable to extract archive." echo "Moving binary to $bin_target ..." -sudo mv /tmp/webhookd* $bin_target +sudo mv /tmp/webhookd $bin_target [ $? != 0 ] && die "Unable to move binary." echo "Making $bin_target as executable ..."