Skip to content

Commit 49cb4a6

Browse files
committed
cd: fix the curl command print
"echo *" can function as "ls". The shell will expand the asterisk to whatever is in that directory. Therefore, it is necessary to escape this characters.
1 parent 4fbdf80 commit 49cb4a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/packaging.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
# to print a "curl" command to see what's going on.
8282
CURL_CMD_ECHO="curl -LfsS \
8383
-X PUT ${RWS_URL_PART}/${OS}/${DIST} \
84-
-u *** \
84+
-u '***' \
8585
-F product=${PRODUCT_NAME}"
8686
8787
for f in $(ls -I '*build*' -I '*.changes' ./build); do

0 commit comments

Comments
 (0)