mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-28 14:15:06 +03:00
try to fix the pull/N issue with circleci again
This commit is contained in:
parent
9553b1ef8f
commit
b6dd0c5248
1 changed files with 3 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Get the branch name
|
||||
BRANCH=$(git symbolic-ref --short HEAD 2>/dev/null)
|
||||
# Get the branch name, removing any "/" characters from pull requests
|
||||
BRANCH=$(git symbolic-ref --short HEAD | tr -d "/" 2>/dev/null)
|
||||
|
||||
# Check if the branch name is not master
|
||||
if [ "$BRANCH" = "master" ]; then
|
||||
|
@ -10,5 +10,4 @@ if [ "$BRANCH" = "master" ]; then
|
|||
fi
|
||||
|
||||
# If it is something other than master, append it
|
||||
# Remove any "/" characters from e.g. "pull/N"
|
||||
printf "yggdrasil-%s" "${BRANCH/\//}"
|
||||
printf "yggdrasil-%s" "$BRANCH"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue