diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-05-30 03:04:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-30 03:04:45 +0800 |
commit | 0066a08aa8f6c469cde7947ec50ca662a32123a0 (patch) | |
tree | e81e3399f51d4d466cd847f0fe5bd7b41550f054 | |
parent | 8b29cc55357b4eec12c771707ed4025d11ca4365 (diff) | |
parent | 6d8afab9287df3d4dbb2b4c012cf4218b0fab4f3 (diff) | |
download | dexon-solidity-0066a08aa8f6c469cde7947ec50ca662a32123a0.tar dexon-solidity-0066a08aa8f6c469cde7947ec50ca662a32123a0.tar.gz dexon-solidity-0066a08aa8f6c469cde7947ec50ca662a32123a0.tar.bz2 dexon-solidity-0066a08aa8f6c469cde7947ec50ca662a32123a0.tar.lz dexon-solidity-0066a08aa8f6c469cde7947ec50ca662a32123a0.tar.xz dexon-solidity-0066a08aa8f6c469cde7947ec50ca662a32123a0.tar.zst dexon-solidity-0066a08aa8f6c469cde7947ec50ca662a32123a0.zip |
Merge pull request #2322 from ethereum/userealhash
Use actual hash.
-rwxr-xr-x | scripts/bytecodecompare/storebytecode.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bytecodecompare/storebytecode.sh b/scripts/bytecodecompare/storebytecode.sh index 653c86ba..564de3f8 100755 --- a/scripts/bytecodecompare/storebytecode.sh +++ b/scripts/bytecodecompare/storebytecode.sh @@ -93,7 +93,7 @@ EOF git config user.email "chris@ethereum.org" git clean -f -d -x - DIRNAME=$(cd "$REPO_ROOT" && git show -s --format="%cd-H" --date=short) + DIRNAME=$(cd "$REPO_ROOT" && git show -s --format="%cd-%H" --date=short) mkdir -p "$DIRNAME" REPORT="$DIRNAME/$ZIP_SUFFIX.txt" cp ../report.txt "$REPORT" |