git.delta.rocks / unique-network / refs/commits / 22fc4951909c

difftreelog

source

substrate-node-template/scripts/init.sh402 Bsourcehistory
1#!/usr/bin/env bash23set -e45echo "*** Initializing WASM build environment"67if [ -z $CI_PROJECT_NAME ] ; then8   rustup update nightly9   rustup update stable10fi1112rustup target add wasm32-unknown-unknown --toolchain nightly1314# Install wasm-gc. It's useful for stripping slimming down wasm binaries.15command -v wasm-gc || \16	cargo +nightly install --git https://github.com/alexcrichton/wasm-gc --force