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 83b0974 commit 61e5096Copy full SHA for 61e5096
Makefile
@@ -0,0 +1,21 @@
1
+# + -------------------------------------------------------
2
+# | Makefile for the datacurator-filetree
3
+# |
4
+# | Usage: make target
5
6
+
7
+# give help message as default target
8
+default:
9
+ @echo "please specify a target: { wip, master }";
10
11
+# Make the wip-branch
12
+wip:
13
+ git checkout ${@} && git pull
14
+ mkdir -p {temp,target}
15
+ find root/ -type d -exec mkdir -p temp/{} \;
16
+ cd temp/ && zip -r0 "../target/datacurator-filetree-${@}.zip" root/ && cd -
17
+ rm -rf temp/
18
19
+# Make the master-branch
20
+master:
21
+ @echo "todo"
build.sh
0 commit comments