Skip to content

Commit 6cad1cb

Browse files
authored
Fix upload of stdlib js runtime files (#7265)
1 parent 96072ab commit 6cad1cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playground/upload_bundle.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ TARGET="ftp://${KEYCDN_SRV}/v${VERSION}/${DIR}"
5454

5555
echo "Uploading '$SOURCE/*.js' to '$TARGET/*.js'..."
5656

57-
curl --ftp-create-dirs -T "${SOURCE}/*.js" --ssl --netrc-file $NETRC_FILE "${TARGET}/"
57+
find "${SOURCE}" -type f -name "*.js" -exec curl --ftp-create-dirs --ssl --netrc-file "$NETRC_FILE" -T {} "${TARGET}/{}" \;

0 commit comments

Comments
 (0)