mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-02 14:03:06 +00:00
* Add foundry version in makefile and install scripts * revert to older verison of Anvil for rln tests and anvil_install fix * pin pnpm version to be installed as rln dep * source pnpm after new install * Add to github path * use npm to install pnpm for rln ci * Update foundry and pnpm versions in Makefile
9 lines
179 B
Bash
Executable File
9 lines
179 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Install Anvil
|
|
FOUNDRY_VERSION="$1"
|
|
./scripts/install_anvil.sh "$FOUNDRY_VERSION"
|
|
|
|
# Install pnpm
|
|
PNPM_VERSION="$2"
|
|
./scripts/install_pnpm.sh "$PNPM_VERSION" |