Skip to content

Commit

Permalink
fix(protocol): fix a downloading solc binary script bug (#13074)
Browse files Browse the repository at this point in the history
Co-authored-by: David <david@taiko.xyz>
  • Loading branch information
alexshliu and davidtaikocha committed Jan 31, 2023
1 parent cbd3e0b commit 8167e9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/protocol/scripts/download_solc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ set -e
mkdir -p bin && cd bin

if [ -f "solc" ]; then
exit 0
exit 0
fi

VERSION=v0.8.9

if [[ "$(uname)" = 'Darwin' ]; then
if [ "$(uname)" = 'Darwin' ]; then
SOLC_FILE_NAME=solc-macos
elif [ "$(uname)" = 'Linux' ]; then
SOLC_FILE_NAME=solc-static-linux
Expand Down

0 comments on commit 8167e9d

Please sign in to comment.