From 0227f460bf99f6fc0406a02f1923cde8d23b0f6c Mon Sep 17 00:00:00 2001 From: Tracey Clark Date: Sat, 8 Jun 2024 16:03:33 -0500 Subject: [PATCH] Remove oct script that was moved to Solus tooling repo --- solus_utility/solus_goto_oct.sh | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 solus_utility/solus_goto_oct.sh diff --git a/solus_utility/solus_goto_oct.sh b/solus_utility/solus_goto_oct.sh deleted file mode 100755 index bd98175..0000000 --- a/solus_utility/solus_goto_oct.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env bash -# Update solus infra repo and get to oct directory -# Used when emailing OC backers - -function update_repos() { - printf "[INFO] Updating the Solus package repo\n" - gotosoluspkgs - git stash - git switch main - git fetch && git pull - - printf "[INFO] Updating the Solus infrastructure-tooling repo \n" - cd ../infrastructure-tooling - git switch master - git fetch && git pull - - printf "[INFO] Switching to the oct directory\n" - cd oct - exec bash -} - -source ~/.bashrc.d/solus-monorepo-helpers.sh - -update_repos