We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abebbf9 commit 2259260Copy full SHA for 2259260
.github/workflows/scrape.yml
@@ -22,9 +22,9 @@ jobs:
22
if [ ! -f "scrape.sh" ]; then
23
echo '#!/bin/bash' > scrape.sh
24
if [[ "$REPO_DESC" == http://* ]] || [[ "$REPO_DESC" == https://* ]]; then
25
- echo "./download.sh $REPO_DESC" >> scrape.sh
+ echo "./download.sh '$REPO_DESC'" >> scrape.sh
26
else
27
- echo '# ./download.sh https://www.example.com/' >> scrape.sh
+ echo "# ./download.sh 'https://www.example.com/'"" >> scrape.sh
28
fi
29
chmod +x scrape.sh
30
echo "Created scrape.sh"
0 commit comments