setup_container.sh (370B)
1 #!/bin/bash 2 3 # This script initializes the cloned iPlug2OOS repo, downloading dependencies, and tools 4 5 echo "Initializing submodule..." 6 git submodule update --init 7 8 echo "Downloading iPlug2 SDKs..." 9 cd iPlug2/Dependencies/IPlug/ 10 ./download-iplug-sdks.sh 11 cd ../../.. 12 13 echo "Downloading iPlug2 prebuilt libs..." 14 cd iPlug2/Dependencies/ 15 ./download-prebuilt-libs.sh 16 cd ../..