Skip to content

Commit

Permalink
fix: Remove Unnecessary Semicolons in Variable Assignments (#2842)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xbryer authored Dec 22, 2024
1 parent f91f004 commit 9c6d516
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/srtool-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
set -xe

RUSTC_VERSION=`curl -s https://raw.githubusercontent.com/paritytech/srtool/master/RUSTC_VERSION`
PACKAGE=$PACKAGE;
BUILD_OPTS=$BUILD_OPTS;
PACKAGE=$PACKAGE
BUILD_OPTS=$BUILD_OPTS
PROFILE=$PROFILE

docker run --rm -it -e WASM_BUILD_STD=0 -e PROFILE=$PROFILE -e PACKAGE=$PACKAGE -e BUILD_OPTS="$BUILD_OPTS" -v $PWD:/build -v $TMPDIR/cargo:/cargo-home paritytech/srtool:$RUSTC_VERSION $*

0 comments on commit 9c6d516

Please sign in to comment.