File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,15 @@ if [ -f .bump.csv.bak ]; then
1212 csv=" $( \c at .bump.csv.bak) "
1313 \r m -f .bump.csv.bak
1414 while IFS=" ," read -r p v1 v2 l1 l2; do
15- b=" ${p} -${v2} "
15+ 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} "
20- read -n 1 -s -r -p " Please review and push commit in branch \" ${b} \" . Press enter to continue..."
20+ echo " Please review and push commit in branch \" ${b} \" . Waiting..."
21+ while \g it status | \g rep -Fq " Your branch is ahead" ; do
22+ \s leep 1
23+ done
2124 \g h pr create -f -l build -l dependencies
2225 \g it checkout -
2326 done <<< " ${csv}"
You can’t perform that action at this time.
0 commit comments