From 6bab4f3ec78c8d1a4f22b361b048c57a6b4f2c5c Mon Sep 17 00:00:00 2001 From: Osman Karaketir Date: Sat, 15 Jun 2024 23:17:12 +0300 Subject: [PATCH] fix: surrounding quotes does not match with regex surrounding quotes does not match with regex in `start.sh` download. --- start.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/start.sh b/start.sh index 9b71a227..a6fd1f63 100755 --- a/start.sh +++ b/start.sh @@ -53,6 +53,9 @@ download_pipelines() { local path=$1 local destination=$2 + # Remove any surrounding quotes from the path + path=$(echo "$path" | sed 's/^"//;s/"$//') + echo "Downloading pipeline files from $path to $destination..." if [[ "$path" =~ ^https://github.com/.*/.*/blob/.* ]]; then