Skip to content
Snippets Groups Projects
Unverified Commit e1623bb2 authored by Brad Linden's avatar Brad Linden Committed by GitHub
Browse files

Merge pull request #1489 from secondlife/brad/fix-mac-channel

Fix channel detection for mac builds
parents da469588 8011d3f4
No related branches found
No related tags found
No related merge requests found
...@@ -222,7 +222,7 @@ jobs: ...@@ -222,7 +222,7 @@ jobs:
# determine the viewer channel from the branch name # determine the viewer channel from the branch name
branch=$AUTOBUILD_VCS_BRANCH branch=$AUTOBUILD_VCS_BRANCH
IFS='/' read -ra ba <<< $branch IFS='/' read -ra ba <<< "$branch"
prefix=${ba[0]} prefix=${ba[0]}
if [ "$prefix" == "project" ]; then if [ "$prefix" == "project" ]; then
IFS='_' read -ra prj <<< "${ba[1]}" IFS='_' read -ra prj <<< "${ba[1]}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment