Skip to content

Commit

Permalink
fix: fix starkli call omission in install script
Browse files Browse the repository at this point in the history
  • Loading branch information
EjembiEmmanuel committed Sep 28, 2024
1 parent 6c8e8bf commit ceb9f6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 67 deletions.
67 changes: 0 additions & 67 deletions kakarot/scripts/install_tools.sh

This file was deleted.

7 changes: 7 additions & 0 deletions scripts/install_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ install_dojo() {
main() {
# Default versions (empty means latest)
local scarb_version=""
local starkli_version=""
local starknet_foundry_version=""
local dojo_version=""
local foundry_version=""
Expand All @@ -90,6 +91,11 @@ main() {
scarb_version=$1
shift
;;
--starkli)
shift
starkli_version=$1
shift
;;
--starknet-foundry)
shift
starknet_foundry_version=$1
Expand All @@ -115,6 +121,7 @@ main() {

# Install all packages, using the specified version or default to latest
install_scarb "$scarb_version"
install_starkli "$starkli_version"
install_starknet_foundry "$starknet_foundry_version"
install_dojo "$dojo_version"
install_foundry "$foundry_version"
Expand Down

0 comments on commit ceb9f6b

Please sign in to comment.