Browse Source

don't clone if it exists

master
AJ ONeal 6 years ago
parent
commit
a477ca1856
  1. 4
      hub.ios.install.sh

4
hub.ios.install.sh

@ -27,7 +27,9 @@ mkdir -p ~/git.ppl.family/ppl
pushd ~/git.ppl.family/ppl/
# ~/git.ppl.family/ppl/
git clone https://git.ppl.family/ppl/ppl.ios.git
if [ ! -e ppl.ios ]; then
git clone https://git.ppl.family/ppl/ppl.ios.git
fi
pushd ./ppl.ios/

Loading…
Cancel
Save