Skip to content

Commit 2259260

Browse files
committed
Use single quotes around URL in scrape.sh
1 parent abebbf9 commit 2259260

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/scrape.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
if [ ! -f "scrape.sh" ]; then
2323
echo '#!/bin/bash' > scrape.sh
2424
if [[ "$REPO_DESC" == http://* ]] || [[ "$REPO_DESC" == https://* ]]; then
25-
echo "./download.sh $REPO_DESC" >> scrape.sh
25+
echo "./download.sh '$REPO_DESC'" >> scrape.sh
2626
else
27-
echo '# ./download.sh https://www.example.com/' >> scrape.sh
27+
echo "# ./download.sh 'https://www.example.com/'"" >> scrape.sh
2828
fi
2929
chmod +x scrape.sh
3030
echo "Created scrape.sh"

0 commit comments

Comments
 (0)