From 54a002fb33183b4df9f26fa44fd849a94afa0ea0 Mon Sep 17 00:00:00 2001 From: CrimsonTome Date: Tue, 22 Nov 2022 21:04:21 +0000 Subject: [PATCH] chore: notes on package managers --- post-install | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/post-install b/post-install index fc2401c..9b13007 100755 --- a/post-install +++ b/post-install @@ -30,18 +30,19 @@ ssh-keygen -t ed25519 -f $sshDir"/id_ed25519_git" -N '' # check package manager if [[ $os == "Ubuntu" ]]; then + echo "using apt package manager"; sudo apt-get update && sudo apt-get upgrade; sudo apt install -y `cat apt-packages`; sudo snap install `cat snap-packages`; wget https://dl.discordapp.net/apps/linux/0.0.21/discord-0.0.21.deb; sudo apt install -f ./discord-0.0.21.deb; elif [[ $os == "Fedora" ]]; then - echo "test" + echo "dnf is not yet supported"; else - echo "OS not yet supported" + echo "OS not yet supported"; fi cd $gitdir gh auth login # after logged into gh -gh repo list --limit 100 |awk '{print $1}' | xargs -L1 gh repo clone \ No newline at end of file +gh repo list --limit 100 |awk '{print $1}' | xargs -L1 gh repo clone