From 6ed802ebb9feb2a17469015c9f1ec13c6dd6043c Mon Sep 17 00:00:00 2001 From: naskya Date: Mon, 6 Nov 2023 21:33:27 +0900 Subject: [PATCH] fix: syntax error in update-deps.sh --- update-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-deps.sh b/update-deps.sh index 8005f1e..28d9be6 100755 --- a/update-deps.sh +++ b/update-deps.sh @@ -19,7 +19,7 @@ DEPS="vlBxr dvara \n mkdir -p lib cd lib -echo $DEPS | while read -r dep +echo "$DEPS" | while read -r dep do slug=$(echo $dep | cut --fields=1 --delimiter=' ') name=$(echo $dep | cut --fields=2 --delimiter=' ')