mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Review fixes
This commit is contained in:
parent
2d6fe522a6
commit
4634ce825b
@ -1,9 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [[ "$(git tag --points-at HEAD 2>/dev/null)"=="v*" ]]; then
|
||||
touch prerelease.txt
|
||||
fi
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
BUILD_TYPE=Release
|
||||
else
|
||||
@ -11,6 +7,11 @@ else
|
||||
fi
|
||||
|
||||
cd $(dirname "$0")/.. &&
|
||||
|
||||
if [[ "$(git tag --points-at HEAD 2>/dev/null)" == v* ]]; then
|
||||
touch prerelease.txt
|
||||
fi
|
||||
|
||||
mkdir -p build &&
|
||||
cd build &&
|
||||
cmake .. -DCMAKE_BUILD_TYPE="$BUILD_TYPE" &&
|
||||
|
Loading…
Reference in New Issue
Block a user