Skip to content

Commit

Permalink
[merge] from unstable into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
OneCDOnly committed Jan 22, 2025
2 parents 3548cfd + a9abe62 commit af0dc48
Show file tree
Hide file tree
Showing 10 changed files with 394 additions and 340 deletions.
Binary file modified objects.tar.gz
Binary file not shown.
Binary file modified sherpa-manager.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions support/build-archives.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ for i in "${!a[@]}"; do
[[ -e ${b[i]} ]] && rm -f "${b[i]}"

if [[ ! -e ${a[i]} ]]; then
ColourTextBrightRed "'${a[i]}' not found, "
TextBrightRed "'${a[i]}' not found, "
continue
fi

tar --create --gzip --numeric-owner --file="${b[i]}" --directory="$support_path" "$(basename "${a[i]}")"

if [[ ! -s ${b[i]} ]]; then
ColourTextBrightRed "'${b[i]}' was not written"; echo
TextBrightRed "'${b[i]}' was not written"; echo
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion support/build-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ manager_epoch=$(date +%s)
SwapTags "$a" "$b"

if grep -q '<?\|?>' "$b"; then
ColourTextBrightRed "'$b' contains unswapped tags, can't continue"; echo
TextBrightRed "'$b' contains unswapped tags, can't continue"; echo
exit 1
fi

Expand Down
4 changes: 2 additions & 2 deletions support/build-objects.sh
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ for action in "${r_pip_actions[@]}"; do
done

if [[ ! -e $target ]]; then
ColourTextBrightRed "'$target' was not written to disk"; echo
TextBrightRed "'$target' was not written to disk"; echo
exit 1
else
ShowDone
Expand All @@ -197,7 +197,7 @@ fi
SwapTags "$target" "$target"

if grep -q '<?\|?>' "$target"; then
ColourTextBrightRed "'$target' contains unswapped tags, can't continue"; echo
TextBrightRed "'$target' contains unswapped tags, can't continue"; echo
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion support/merge-into-stable-and-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

release_tag=v${build_date}

echo -en "ready to merge '$(ColourTextBrightRed "$unstable_branch")' branch into '$(ColourTextBrightGreen "$stable_branch")' branch as '$(ColourTextBrightWhite "$release_tag")': proceed? "
echo -en "ready to merge '$(TextBrightRed "$unstable_branch")' branch into '$(TextBrightGreen "$stable_branch")' branch as '$(TextBrightWhite "$release_tag")': proceed? "
read -rn1 response
echo

Expand Down
Loading

0 comments on commit af0dc48

Please sign in to comment.