We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f7ab70 commit a6eb434Copy full SHA for a6eb434
tests/steps/test-zip.sh
@@ -32,6 +32,15 @@ stdout=$2
32
} > "${stdout}" 2>&1
33
echo "👍🏻 A zip archive generated correctly"
34
35
+{
36
+ mkdir -p "${TARGET}/something"
37
+ zip=${TARGET}/cam-$(date +%Y-%m-%d).zip
38
+ "${LOCAL}/steps/zip.sh"
39
+ list=$(unzip -l "${zip}")
40
+ echo "${list}" | grep "cam-*/" > /dev/null
41
+} > "${stdout}" 2>&1
42
+echo "👍🏻 A zip archive contains the CaM repository"
43
+
44
{
45
mkdir -p "${TARGET}/measurements/a/b/baam.m.cloc"
46
mkdir -p "${TARGET}/temp/a/b/hello.txt"
0 commit comments