Skip to content

Commit

Permalink
cd: fix the curl command print
Browse files Browse the repository at this point in the history
"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.
  • Loading branch information
LeonidVas committed Dec 8, 2022
1 parent 4fbdf80 commit 49cb4a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
# to print a "curl" command to see what's going on.
CURL_CMD_ECHO="curl -LfsS \
-X PUT ${RWS_URL_PART}/${OS}/${DIST} \
-u *** \
-u '***' \
-F product=${PRODUCT_NAME}"
for f in $(ls -I '*build*' -I '*.changes' ./build); do
Expand Down

0 comments on commit 49cb4a6

Please sign in to comment.