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.
-r
1 parent 4fb9e4f commit 591e9b1Copy full SHA for 591e9b1
entrypoint.sh
@@ -16,7 +16,7 @@ then
16
then
17
if [ -z "$INPUT_EXCLUSIONS" ]
18
19
- 7z a -tzip -r $INPUT_FILENAME $INPUT_PATH || { printf "\n⛔ Unable to create %s archive.\n" "$INPUT_TYPE"; exit 1; }
+ 7z a -tzip $INPUT_FILENAME $INPUT_PATH || { printf "\n⛔ Unable to create %s archive.\n" "$INPUT_TYPE"; exit 1; }
20
else
21
EXCLUSIONS=''
22
@@ -26,7 +26,7 @@ then
26
EXCLUSIONS+=$EXCLUSION
27
done
28
29
- 7z a -tzip -r $INPUT_FILENAME $INPUT_PATH $EXCLUSIONS || { printf "\n⛔ Unable to create %s archive.\n" "$INPUT_TYPE"; exit 1; }
+ 7z a -tzip $INPUT_FILENAME $INPUT_PATH $EXCLUSIONS || { printf "\n⛔ Unable to create %s archive.\n" "$INPUT_TYPE"; exit 1; }
30
fi
31
32
0 commit comments