Skip to content

Commit

Permalink
fix(lib-common): do not use commas in subfolder names
Browse files Browse the repository at this point in the history
  • Loading branch information
phorcys420 committed Jul 12, 2024
1 parent 822396a commit 3050314
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib-common/install.sh
Original file line number Diff line number Diff line change
@@ -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"
)

0 comments on commit 3050314

Please sign in to comment.