Skip to content

Commit

Permalink
Pass DFX version into the upgrade_asset_canister script (#6131)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles authored Jul 26, 2024
1 parent ff65b0a commit f67a6a9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions scripts/proposals/upgrade_asset_canister.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ SCRIPT=$(readlink -f "$0")
SCRIPT_DIR=$(dirname "$SCRIPT")
cd $SCRIPT_DIR/../..

TITLE="Upgrade asset canister to DFX version 0.19.0"
URL="https://github.com/dfinity/sdk/releases/tag/0.19.0"
DFX_VERSION=$1

TITLE="Upgrade asset canister to DFX version $DFX_VERSION"
URL="https://github.com/dfinity/sdk/releases/tag/$DFX_VERSION"
CANISTER_NAME=website
SUMMARY="This proposal upgrades the asset canister wasm to the version included in DFX 0.19.0"
SUMMARY="This proposal upgrades the asset canister wasm to the version included in DFX $DFX_VERSION"
FUNCTION_ID=3

# Set env variables based on .env file
Expand Down

0 comments on commit f67a6a9

Please sign in to comment.