summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBrad Linden <46733234+brad-linden@users.noreply.github.com>2024-05-16 09:55:50 -0700
committerGitHub <noreply@github.com>2024-05-16 09:55:50 -0700
commite1623bb276f83a43ce7a197e388720c05bdefe61 (patch)
tree607b46419ecd68b9aab5e163715eeabc1a66dc69 /.github
parentda469588244d490673ec08d186526d8832dcbd62 (diff)
parent8011d3f457ca86b9610d5e9580d554393dd4a0a6 (diff)
Merge pull request #1489 from secondlife/brad/fix-mac-channel
Fix channel detection for mac builds
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index b60f787a9c..8d1c6b63e6 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -222,7 +222,7 @@ jobs:
# determine the viewer channel from the branch name
branch=$AUTOBUILD_VCS_BRANCH
- IFS='/' read -ra ba <<< $branch
+ IFS='/' read -ra ba <<< "$branch"
prefix=${ba[0]}
if [ "$prefix" == "project" ]; then
IFS='_' read -ra prj <<< "${ba[1]}"