diff options
author | chriseth <c@ethdev.com> | 2016-09-09 19:59:22 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-09-09 20:23:33 +0800 |
commit | 29ecc6fe31d56feaf5d5a04e84b12138baa0d1e7 (patch) | |
tree | 9c3dc9ae8980bb556a3f18cbd290eb6216e90f1f /scripts/release_ppa.sh | |
parent | 79867f49b2b27942c465e50475e5e6a0d5a6d897 (diff) | |
download | dexon-solidity-29ecc6fe31d56feaf5d5a04e84b12138baa0d1e7.tar.gz dexon-solidity-29ecc6fe31d56feaf5d5a04e84b12138baa0d1e7.tar.zst dexon-solidity-29ecc6fe31d56feaf5d5a04e84b12138baa0d1e7.zip |
Remove leading zeroes in prerelease components.
Diffstat (limited to 'scripts/release_ppa.sh')
-rwxr-xr-x | scripts/release_ppa.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/release_ppa.sh b/scripts/release_ppa.sh index 8e9dc282..23c374e1 100755 --- a/scripts/release_ppa.sh +++ b/scripts/release_ppa.sh @@ -54,7 +54,7 @@ cd solc version=`grep -oP "PROJECT_VERSION \"?\K[0-9.]+(?=\")"? CMakeLists.txt` commithash=`git rev-parse --short HEAD` committimestamp=`git show --format=%ci HEAD | head -n 1` -commitdate=`git show --format=%ci HEAD | head -n 1 | cut - -b1-10` +commitdate=`git show --format=%ci HEAD | head -n 1 | cut - -b1-10 | sed -e 's/-0?/./' | sed -e 's/-0?/./'` echo "$commithash" > commit_hash.txt if [ $branch = develop ] |