diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-07-02 18:51:42 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-07-02 18:51:42 +0300 |
commit | e03ee1bd2f4217b0ac2be05ed556aeba0480ff83 (patch) | |
tree | a4d7519c2ff411159ac7838d38fef83dca1ccefe | |
parent | aea5ed78486b4709163d803f332ed2eed7fcfd3b (diff) | |
download | wekan-e03ee1bd2f4217b0ac2be05ed556aeba0480ff83.tar.gz wekan-e03ee1bd2f4217b0ac2be05ed556aeba0480ff83.tar.bz2 wekan-e03ee1bd2f4217b0ac2be05ed556aeba0480ff83.zip |
Try to fix Dockerfile.
-rw-r--r-- | Dockerfile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -84,12 +84,12 @@ RUN \ # Verifying signature of Sandstorm release gpg --verify $TARBALL.sig $TARBALL && \ \ - if [ $? -eq 0 ] && \ - then && \ - echo "=== All is well. Good signature in Sandstorm." && \ - else && \ - echo "=== PROBLEM WITH SANDSTORM SIGNATURE." && \ - exit 1 && \ + if [ $? -eq 0 ] \ + then \ + echo "=== All is well. Good signature in Sandstorm." \ + else \ + echo "=== PROBLEM WITH SANDSTORM SIGNATURE." \ + exit 1 \ fi && \ echo "=== Extracting Node from Sandstorm release tarball" && \ # --strip 2 removes path of 2 subdirectories |