Update build.yaml

master
Vir Linden 2024-05-02 10:08:46 -04:00 committed by GitHub
parent eb0f963b46
commit 6eeef10cda
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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