shell script to automate downloading of OS X prebuilt dependencies

This commit is contained in:
stopiccot
2014-05-02 15:55:34 +03:00
parent 1dbc0c7177
commit 0dff64bd9b
+8
View File
@@ -0,0 +1,8 @@
if [ -f ../.osx_dependencies_installed ];
then
echo "OS X prebuilt dependencies are already installled"
else
curl -o ../xcode-pack.zip -L https://dl.dropboxusercontent.com/u/1777581/xcode-pack.zip
unzip ../xcode-pack.zip -d ../
touch ../.osx_dependencies_installed
fi