diff options
author | Vir Linden <60274682+vir-linden@users.noreply.github.com> | 2024-05-02 10:08:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-02 10:08:46 -0400 |
commit | 6eeef10cda794607c8fbed6fe89179c09a42224b (patch) | |
tree | abfe73188d0ae34761994752fc2e84af1d60d841 /.github | |
parent | eb0f963b46c68ad8faee133996599ba97b54d034 (diff) |
Update build.yaml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e4952d9493..4785273b78 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -182,10 +182,10 @@ jobs: IFS='/' read -ra ba <<< $branch prefix=${ba[0]} if [ "$prefix" == "project" ]; then - IFS='_' read -ra prj << "${ba[1]}" + IFS='_' read -ra prj <<< "${ba[1]}" # uppercase first letter of each word export viewer_channel="Second Life Project ${prj[*]^}" - elif [ "$prefix" == "release" || "$prefix" == "main" ]; + elif [[ "$prefix" == "release" || "$prefix" == "main" ]]; then export viewer_channel="Second Life Release" else |