Skip to content

Commit

Permalink
bugfix: fix typo for file name
Browse files Browse the repository at this point in the history
  • Loading branch information
ShuN6211 committed Sep 28, 2024
1 parent 84d1559 commit 09168ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
File renamed without changes.
5 changes: 2 additions & 3 deletions scripts/setup-sheldon.bash
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ set -x
# shellcheck source=./scripts/common.bash
source "$(dirname "$0")/common.bash"

if [ ! -e "$CARGO_HOME/env" ]; then
if type "$CARGO_HOME/bin/cargo" >/dev/null; then
echo "Installing Rust..."
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | /bin/sh -s -- -y --no-modify-path
else
echo "Rust is already installed, skipping the procedure"
fi

. "$CARGO_HOME/env"
cargo install sheldon
"$CARGO_HOME/bin/cargo" install sheldon

0 comments on commit 09168ed

Please sign in to comment.