Skip to content

Commit

Permalink
Output updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wtgee committed Nov 19, 2024
1 parent 1bd2bd3 commit 6262c14
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions resources/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ set -e
echo "Installing POCS"

echo "Setting up user."
source ./setup-user.sh
source ./setup-user.sh > install.log 2>&1

echo "Fixing system time."
source ./fix-time.sh
source ./fix-time.sh >> install.log 2>&1

echo "Installing system dependencies."
source ./install-system-deps.sh
source ./install-system-deps.sh >> install.log 2>&1

echo "Installing POCS software."
source ./install-pocs.sh
source ./install-pocs.sh >> install.log 2>&1

echo "Installing conda python."
source ./install-conda.sh
source ./install-conda.sh >> install.log 2>&1

echo "Installing ZSH for a better shell."
source ./install-zsh.sh
source ./install-zsh.sh >> install.log 2>&1

echo "Installing services so things run at startup."
source ./install-services.sh
source ./install-services.sh >> install.log 2>&1

0 comments on commit 6262c14

Please sign in to comment.