Browse Source

Make git pull optional

release/v0.1
Shailesh 9 years ago
parent
commit
853ba89601
  1. 4
      iguana/m_ios
  2. 4
      iguana/m_osx
  3. 4
      m_ios
  4. 4
      m_unix

4
iguana/m_ios

@ -2,7 +2,9 @@ set -x
CC="$(xcrun --sdk iphoneos --find clang) -isysroot $(xcrun --sdk iphoneos --show-sdk-path) -arch arm64 -ONLY_ACTIVE_ARCH=YES"
git pull
if [[ $# -eq 0 ]]; then
git pull
fi
echo CC=$CC

4
iguana/m_osx

@ -1,5 +1,7 @@
rm ../agents/iguana *.o
git pull
if [[ $# -eq 0 ]]; then
git pull
fi
cd secp256k1; ./m_osx; cd ..
gcc -g -Wno-deprecated -c -O2 *.c databases/iguana_DB.c
gcc -g -Wno-deprecated -c main.c iguana777.c iguana_bundles.c

4
m_ios

@ -1,2 +1,4 @@
git pull
if [[ $# -eq 0 ]]; then
git pull
fi
cd iguana; ./m_ios; cd ..

4
m_unix

@ -1,3 +1,5 @@
git pull
if [[ $# -eq 0 ]]; then
git pull
fi
cd iguana; ./m_unix; cd ..
#cd SuperNET; ./m_unix; cd ..

Loading…
Cancel
Save