This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 24a8e07 chore(dev/release): fix missing function in 03-source.sh
(#429)
24a8e07 is described below
commit 24a8e07c1a80b90e679319d2aebf0b77451dc021
Author: David Li <[email protected]>
AuthorDate: Tue Feb 7 14:17:47 2023 -0500
chore(dev/release): fix missing function in 03-source.sh (#429)
---
dev/release/03-source.sh | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/dev/release/03-source.sh b/dev/release/03-source.sh
index 4866254..286d4a7 100755
--- a/dev/release/03-source.sh
+++ b/dev/release/03-source.sh
@@ -69,8 +69,12 @@ main() {
rm -rf tmp
echo "Uploaded at https://dist.apache.org/repos/dist/dev/arrow/${tag}"
+}
- popd
+header() {
+ echo "============================================================"
+ echo "${1}"
+ echo "============================================================"
}
main "$@"