From 0ca948750ac70cda1f92cfd6286f0ccd4a7cebb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20Tsnobiladz=C3=A9?= Date: Thu, 30 Jan 2025 18:19:22 +0100 Subject: [PATCH] Fix upload of stdlib js runtime files --- playground/upload_bundle.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/upload_bundle.sh b/playground/upload_bundle.sh index 87a6ad3276..0176949022 100755 --- a/playground/upload_bundle.sh +++ b/playground/upload_bundle.sh @@ -54,4 +54,4 @@ TARGET="ftp://${KEYCDN_SRV}/v${VERSION}/${DIR}" echo "Uploading '$SOURCE/*.js' to '$TARGET/*.js'..." -curl --ftp-create-dirs -T "${SOURCE}/*.js" --ssl --netrc-file $NETRC_FILE "${TARGET}/" \ No newline at end of file +find "${SOURCE}" -type f -name "*.js" -exec curl --ftp-create-dirs --ssl --netrc-file "$NETRC_FILE" -T {} "${TARGET}/{}" \;