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 ccdd880 commit 51b9266Copy full SHA for 51b9266
.gitignore
@@ -44,4 +44,4 @@ Debug
44
CMakeLists.txt
45
46
# Archive
47
-HackTTP.zip
+etap*.zip
hackttp.archive
@@ -1,9 +1,11 @@
1
#!/bin/bash
2
3
+fname="etap_$1.zip"
4
+echo "Preparing $fname"
5
echo -n "Fetching fresh copy..."
6
git clone http://github.com/LeHack/hackttp hackttp >& /dev/null
7
echo "OK"
8
echo -n "Creating archive..."
-zip -r HackTTP.zip hackttp/ -x '*/.git/*'
9
+zip -r $fname hackttp/ -x '*/.git/*'
10
rm -Rf hackttp
-echo "etap_$1.zip ready"
11
+echo "$fname ready"
0 commit comments