aboutsummaryrefslogtreecommitdiffstats
path: root/test/externalTests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/externalTests.sh')
-rwxr-xr-xtest/externalTests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/externalTests.sh b/test/externalTests.sh
index 16f9e55a..126b13b5 100755
--- a/test/externalTests.sh
+++ b/test/externalTests.sh
@@ -55,13 +55,13 @@ function test_truffle
cd "$DIR"
echo "Current commit hash: `git rev-parse HEAD`"
npm install
- # Replace solc package by master
+ # Replace solc package by v0.5.0
for d in node_modules node_modules/truffle/node_modules
do
(
cd $d
rm -rf solc
- git clone --depth 1 https://github.com/ethereum/solc-js.git solc
+ git clone --depth 1 -b v0.5.0 https://github.com/ethereum/solc-js.git solc
cp "$SOLJSON" solc/
)
done