You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by wf...@apache.org on 2014/03/15 00:40:41 UTC

git commit: Fix bash here-document warning.

Repository: incubator-aurora
Updated Branches:
  refs/heads/master 1713d0824 -> a1949e5e3


Fix bash here-document warning.

Reviewed at https://reviews.apache.org/r/19245/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/a1949e5e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/a1949e5e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/a1949e5e

Branch: refs/heads/master
Commit: a1949e5e3caec3f35648232a69269198386b61c4
Parents: 1713d08
Author: Bill Farner <wf...@apache.org>
Authored: Fri Mar 14 16:40:12 2014 -0700
Committer: Bill Farner <wf...@apache.org>
Committed: Fri Mar 14 16:40:12 2014 -0700

----------------------------------------------------------------------
 src/test/sh/org/apache/aurora/verify_thrift_checksum.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/a1949e5e/src/test/sh/org/apache/aurora/verify_thrift_checksum.sh
----------------------------------------------------------------------
diff --git a/src/test/sh/org/apache/aurora/verify_thrift_checksum.sh b/src/test/sh/org/apache/aurora/verify_thrift_checksum.sh
index 25065b5..b60ab53 100644
--- a/src/test/sh/org/apache/aurora/verify_thrift_checksum.sh
+++ b/src/test/sh/org/apache/aurora/verify_thrift_checksum.sh
@@ -46,7 +46,8 @@ do
 import hashlib
 with open('$file', 'rb') as f:
   print(hashlib.md5(f.read()).hexdigest())
-EOF)
+EOF
+)
   golden_file=src/test/resources/${file#src/main/thrift/}.md5
   if $reset_mode
   then