Skip to content

Commit

Permalink
Fix: Incorrect use of flavorlang instead of flavor in install scr…
Browse files Browse the repository at this point in the history
…ipts

#154
  • Loading branch information
KennyOliver committed Jan 3, 2025
1 parent 5247d66 commit c19a622
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions scripts/install_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
set -e

# Set execute permissions
chmod +x flavorlang
chmod +x flavor

# Move to /usr/local/bin for easier access
echo "Moving flavorlang to /usr/local/bin/"
sudo mv flavorlang /usr/local/bin/
echo "Moving flavor to /usr/local/bin/"
sudo mv flavor /usr/local/bin/

# Run the executable
echo "Running FlavorLang interpreter..."
flavorlang --about
flavor --about
8 changes: 4 additions & 4 deletions scripts/install_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
set -e

# Set execute permissions
chmod +x flavorlang
chmod +x flavor

# Move to /usr/local/bin for easier access
echo "Moving flavorlang to /usr/local/bin/"
sudo mv flavorlang /usr/local/bin/
echo "Moving flavor to /usr/local/bin/"
sudo mv flavor /usr/local/bin/

# Run the executable
echo "Running FlavorLang interpreter..."
flavorlang --about
flavor --about

0 comments on commit c19a622

Please sign in to comment.