Skip to content

Commit

Permalink
Adding sudo to apt
Browse files Browse the repository at this point in the history
  • Loading branch information
Benji377 committed Jul 8, 2023
1 parent f1c160f commit 11d9cc3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ install:
@printf "$(TEXT)🚀 Starting installation...$(RESET)"
@sleep 3
@printf "$(TEXT)🌑 >>>> Updating system and removing temps$(RESET)"
apt-get update && apt-get upgrade -y
apt-get autoremove -y
sudo apt-get update && apt-get upgrade -y
sudo apt-get autoremove -y
@printf "$(TEXT)🌒 >>>> Installing curl$(RESET)"
apt-get -y install curl
sudo apt-get -y install curl
@printf "$(TEXT)🌓 >>>> Installing Rust for Linux$(RESET)"
curl https://sh.rustup.rs -sSf | sh -s -- -y
export PATH="$HOME/.cargo/bin:$PATH"
-source "$HOME/.cargo/env"
@printf "$(TEXT)🌔 >>>> Installing Nodejs$(RESET)"
curl -fsSL https://deb.nodesource.com/setup_lts.x | bash
apt-get install -y nodejs
sudo apt-get install -y nodejs
@printf "$(TEXT)🌕 >>>> Installing Nextjs and EsLint$(RESET)"
npm install next@latest react@latest react-dom@latest eslint-config-next@latest
@printf "$(TEXT)🌖 >>>> Installing Tauri deps$(RESET)"
apt-get install -y libwebkit2gtk-4.0-dev build-essential wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
sudo apt-get install -y libwebkit2gtk-4.0-dev build-essential wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
@printf "$(TEXT)🌗 >>>> Installing Tauri$(RESET)"
cargo install tauri-cli
@printf "$(TEXT)🌘 >>>> Installing npm deps$(RESET)"
Expand Down

0 comments on commit 11d9cc3

Please sign in to comment.