File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
2-
32set -euo pipefail
3+ IFS=$' \n\t '
44
55cd " $( \d irname " ${0} " ) "
66
@@ -11,14 +11,14 @@ if [ -f .bump.csv.bak ]; then
1111 fi
1212 csv=" $( \c at .bump.csv.bak) "
1313 \r m -f .bump.csv.bak
14- while IFS=" , " read -r p v1 v2 l1 l2; do
14+ while IFS=' , ' read -r p v1 v2 l1 l2; do
1515 b=" ${p} -${v2// [\~\:]/ -} "
1616 \g it switch --create " ${b} "
1717 \p erl -i -p -e " s|\Q${l1} \E|${l2} |g" Dockerfile
1818 \g it add Dockerfile
1919 \g it commit -S -m " build(deps): bump ${p} from ${v1} to ${v2} "
2020 echo " Please review and push commit in branch \" ${b} \" . Waiting..."
21- while \ g it status | \g rep -Fq " Your branch is ahead " ; do
21+ while [ " $( git rev-list --count --left-only ' @{u}...HEAD ' ) " -gt 0 ] ; do
2222 \s leep 1
2323 done
2424 \g h pr create -f -l build -l dependencies
You can’t perform that action at this time.
0 commit comments