Improved sos-git updater
This commit is contained in:
parent
7761eeb100
commit
7f503546d2
1 changed files with 3 additions and 0 deletions
|
@ -580,6 +580,9 @@ elif [ "$1" == "remoteauth" ]; then
|
||||||
noRepoFound "$3"
|
noRepoFound "$3"
|
||||||
fi
|
fi
|
||||||
elif [ "$1" == "selfupdate" ]; then
|
elif [ "$1" == "selfupdate" ]; then
|
||||||
|
if [ -f "$SOSGIT_TMP/sos-git-updater.sh" ]; then
|
||||||
|
rm -rf "$SOSGIT_TMP/sos-git-updater.sh"
|
||||||
|
fi
|
||||||
echo -e "echo Updating sos-git to \"$0\";$SOSGIT_CURL -sSLqq \"$SOSGIT_UPDATEURL\" &> $0;kill -9 $$ &> /dev/null" &> $SOSGIT_TMP/sos-git-updater.sh
|
echo -e "echo Updating sos-git to \"$0\";$SOSGIT_CURL -sSLqq \"$SOSGIT_UPDATEURL\" &> $0;kill -9 $$ &> /dev/null" &> $SOSGIT_TMP/sos-git-updater.sh
|
||||||
chmod +x $SOSGIT_TMP/sos-git-updater.sh
|
chmod +x $SOSGIT_TMP/sos-git-updater.sh
|
||||||
$SOSGIT_TMP/sos-git-updater.sh
|
$SOSGIT_TMP/sos-git-updater.sh
|
||||||
|
|
Reference in a new issue