aboutsummaryrefslogtreecommitdiff
path: root/scripts/common
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/common')
-rwxr-xr-xscripts/common13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/common b/scripts/common
new file mode 100755
index 000000000..c9453506d
--- /dev/null
+++ b/scripts/common
@@ -0,0 +1,13 @@
+update() {
+ [[ -d $baseDir ]] || mkdir -p $baseDir
+ cd $baseDir
+
+ if [ ! -d $baseDir/$2 ]; then git clone "https://github.com/$1/$2.git"; fi
+
+ cd $2
+
+ git fetch --tags "https://github.com/$1/$2.git"
+ (git fetch "https://github.com/$1/$2.git" $3 && git checkout -fq FETCH_HEAD) #|| git checkout -fq $3 # || fallback is for local testing on tag
+ git reset --hard
+}
+