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 5208092 commit 3c012caCopy full SHA for 3c012ca
.gitignore
@@ -1 +1,2 @@
1
.DS_Store
2
+target/
build.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+
3
+# + -------------------------------------------------------
4
+# | Build Script for the datacurator-filetree
5
+# |
6
+# | Usage: ./build.sh
7
8
9
+# TODO: Make customizable for a more precise build pipeline
10
+# --> MAKEFILE?
11
12
+VERSION=beta
13
14
+# Sanity Check
15
+if [[ $(basename $(pwd)) != "datacurator-filetree" ]]; then exit 1; fi
16
17
+rm -rf target/*
18
+find root/ -type d -exec mkdir -p target/{} \;
19
+zip -r0 "datacurator-filetree-[${VERSION}].zip" target/
20
21
+mv "datacurator-filetree-[${VERSION}].zip" target/
0 commit comments