We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0abee85 commit b932fd4Copy full SHA for b932fd4
download_dependencies.sh
@@ -0,0 +1,8 @@
1
+#!/bin/bash
2
+
3
+rm -rf ext
4
5
+export GIT_TERMINAL_PROMPT=0
6
7
+echo -n 'Downloading LinkedList ' ; git clone -b v0.1.0 --depth=1 https://github.com/fauzanzaid/Linked-List-in-C ./ext/LinkedList &> /dev/null && { echo 'done' ; } || { echo 'failed' ; exit 1; }
8
+echo -n 'Downloading Token ' ; git clone -b v0.1.0 --depth=1 https://github.com/fauzanzaid/Compiler-Token-in-C ./ext/Token &> /dev/null && { echo 'done' ; } || { echo 'failed' ; exit 1; }
0 commit comments