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 a39e27f commit 78796b2Copy full SHA for 78796b2
run.sh
@@ -26,7 +26,7 @@ else
26
fi
27
28
# Set up working directory
29
-owner=$("${stat_cmd}" "%u:%g" .)
+owner=$("${stat_cmd[@]}" "%u:%g" .)
30
chown -R "$(id -u)" .
31
32
# Create the output directory
@@ -66,7 +66,7 @@ GIT_CLIFF_OUTPUT="$CONTEXT" "$GIT_CLIFF_PATH" --context "${args[@]}"
66
chown -R "$owner" .
67
68
# Set the changelog content (max: 50MB)
69
-FILESIZE=$("${stat_cmd}" %s "$OUTPUT")
+FILESIZE=$("${stat_cmd[@]}" %s "$OUTPUT")
70
MAXSIZE=$((40 * 1024 * 1024))
71
if [ "$FILESIZE" -le "$MAXSIZE" ]; then
72
echo "content<<EOF" >>$GITHUB_OUTPUT
0 commit comments