Commit dd7e2a12842e9fb01fb302cc860bc78567e0b0c9
1 parent
3f5b907e
Exists in
master
and in
2 other branches
git avec option http.sslVerify=false
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
install/update.sh
... | ... | @@ -51,7 +51,8 @@ read do_it ; [[ -z $do_it ]] && do_it="o" ; echo $do_it |
51 | 51 | [[ $do_it != "o" ]] && exit 0 |
52 | 52 | |
53 | 53 | cd ../ || abort |
54 | -git pull || abort | |
54 | +#git pull || abort | |
55 | +git -c http.sslVerify=false pull || abort | |
55 | 56 | cd - >/dev/null || abort |
56 | 57 | |
57 | 58 | # TEST only | ... | ... |