1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-27 13:56:24 +00:00

👔 Update Marlin actions for 2.1.x

This commit is contained in:
Scott Lahteine 2022-06-05 20:25:58 -05:00 committed by Scott Lahteine
parent c34dd64469
commit 3fd592e64b

View File

@ -1,8 +1,10 @@
#!/usr/bin/env bash #!/usr/bin/env bash
BRANCH=$(git branch 2>/dev/null | grep ^* | sed 's/\* //g')
IFS=: read -r PART1 PART2 <<< "$@" IFS=: read -r PART1 PART2 <<< "$@"
[ -n "${PART2}" ] && { REPO="$PART1" ; RDIR="${PART2// /%20}" ; } \ [ -n "${PART2}" ] && { REPO="$PART1" ; RDIR="${PART2// /%20}" ; } \
|| { REPO=bugfix-2.1.x ; RDIR="${PART1// /%20}" ; } || { REPO=$BRANCH ; RDIR="${PART1// /%20}" ; }
EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/$REPO/config/examples" EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/$REPO/config/examples"
which curl >/dev/null && TOOL='curl -L -s -S -f -o wgot' which curl >/dev/null && TOOL='curl -L -s -S -f -o wgot'