You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo'Error: unexpected error. Unable to commit changes.'>&2
507
-
echo''>&2
508
-
return 1
509
-
fi
510
-
echo'Successfully committed changes.'>&2
511
-
fi
512
-
echo''>&2
513
-
514
-
return 0
515
-
}
516
-
517
477
# Creates (and pushes) a new Git tag.
518
478
create_tag() {
519
479
echo'Creating a new tag...'>&2
@@ -656,16 +616,19 @@ main() {
656
616
657
617
# TODO: ensure that all package CLIs are executable
658
618
659
-
update_markdown_related
660
-
if [[ "$?"-ne 0 ]];then
661
-
revert_changes
662
-
on_error 1
663
-
fi
664
-
update_markdown_package_urls
665
-
if [[ "$?"-ne 0 ]];then
666
-
revert_changes
667
-
on_error 1
668
-
fi
619
+
# TODO: consider removing, so long as we are comfortable relying on GitHub workflows to periodically update related packages
620
+
# update_markdown_related
621
+
# if [[ "$?" -ne 0 ]]; then
622
+
# revert_changes
623
+
# on_error 1
624
+
# fi
625
+
626
+
# update_markdown_package_urls
627
+
# if [[ "$?" -ne 0 ]]; then
628
+
# revert_changes
629
+
# on_error 1
630
+
# fi
631
+
669
632
update_repl_docs
670
633
if [[ "$?"-ne 0 ]];then
671
634
revert_changes
@@ -684,10 +647,6 @@ main() {
684
647
685
648
# WARNING: at this point, we are at the point of no return and, from this point forward, cannot easily revert changes to the local repository as packages may already be published...
686
649
687
-
# publish_bundles # FIXME: re-enable bundle publishing once determine cause for test failures
0 commit comments