Skip to content

Commit

Permalink
build(scripts): Add toml to prepare ci
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarth committed Feb 1, 2024
1 parent 4b9194f commit 7053eac
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/prepare_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,13 @@ else
echo "uniffi-bindgen already installed, skipping."
fi

# Install toml-cli binary
print_action "[config] Installing toml-cli..."
if ! command -v toml &> /dev/null
then
cargo install toml-cli
else
echo "toml already installed, skipping."
fi

print_action "Done! Please run ./scripts/buld_ios.sh to build for iOS."

0 comments on commit 7053eac

Please sign in to comment.