git ssl update

This commit is contained in:
2018-10-01 10:49:54 -05:00
parent 3f47e51f34
commit 3420e460de

5
run.sh
View File

@@ -4,14 +4,15 @@
cd /opt/LinUPx
echo ""
#if [ -z "$1" ]; then
if [ "`git -c http.sslVerify=false log --pretty=%H ...refs/heads/master^ | head -n 1`" = "`git -c http.sslVerify=false ls-remote origin -h refs/heads/master |cut -f1`" ]; then
if [ "`git log --pretty=%H ...refs/heads/master^ | head -n 1`" = "`git ls-remote origin -h refs/heads/master |cut -f1`" ]; then
echo -e "\e[92m\e[1mUp to date\e[0m"
sleep 1
./linupx-scripts.sh $1
else
echo -e "\e[93m\e[1mnot up to date\e[21m, updating now...\e[0m"
sleep 1
git -c http.sslVerify=false pull
# git -c http.sslVerify=false pull
git pull
echo ""
echo -e "\e[92m\e[1mupdate completed\e[0m"
sleep 1