Skip to content

Commit

Permalink
Remove space from generated md5sum.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkraljevic committed May 5, 2014
1 parent 86bb16c commit 155e837
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ build_h2o:
(export PROJECT_VERSION=$(PROJECT_VERSION); ./build.sh noclean doc)
git checkout -- ${GA_FILE}.js
ifneq ($(shell uname),Windows_NT)
openssl md5 target/h2o.jar | sed 's/.*=//' >> target/h2o.jar.md5
openssl md5 target/h2o.jar | sed 's/.*=[ ]*//' > target/h2o.jar.md5
else
md5deep target/h2o.jar | cut -d'' -f1 >> target/h2o.jar.md5
md5deep target/h2o.jar | cut -d'' -f1 > target/h2o.jar.md5
endif

build_package:
Expand Down

0 comments on commit 155e837

Please sign in to comment.