Skip to content

Commit

Permalink
Merge pull request #170 from KennyOliver/issue-154
Browse files Browse the repository at this point in the history
Fix: Incorrect use of `flavorlang` instead of `flavor` in install scripts
  • Loading branch information
KennyOliver authored Jan 3, 2025
2 parents 4cbeffc + c19a622 commit 7c67584
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 7c67584

Please sign in to comment.