summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorBrad Linden <brad@lindenlab.com>2024-05-15 16:08:04 -0700
committerBrad Linden <brad@lindenlab.com>2024-05-15 16:08:04 -0700
commit8011d3f457ca86b9610d5e9580d554393dd4a0a6 (patch)
treee5255563f0c789bfb1c73cdcc521845ec76ac2c3 /.github
parent33ad8db77584c66496f261a1cfd9aa535462a003 (diff)
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 4785273b78..b26006f2ff 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -179,7 +179,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]}"