From 3050314153a42db34feb937e7c2070c921c2f81f Mon Sep 17 00:00:00 2001 From: phorcys420 <57866459+phorcys420@users.noreply.github.com> Date: Fri, 12 Jul 2024 09:57:52 +0000 Subject: [PATCH] fix(lib-common): do not use commas in subfolder names --- src/lib-common/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib-common/install.sh b/src/lib-common/install.sh index 206d92d..752920d 100644 --- a/src/lib-common/install.sh +++ b/src/lib-common/install.sh @@ -25,8 +25,8 @@ cp --recursive src/. "$INSTALL_DIR" # Make links to each subversion (e.g if version is 1.0.0, then link to 1.0 and 1) and "current" SUBFOLDERS=( - "${VERSION_PARTS[0]}.${VERSION_PARTS[1]}", # 1.0 - "${VERSION_PARTS[0]}", # 1 + "${VERSION_PARTS[0]}.${VERSION_PARTS[1]}" # 1.0 + "${VERSION_PARTS[0]}" # 1 "current" )