package script do not fail on error 54/78454/3
authorSamuli Silvius <s.silvius@partner.samsung.com>
Thu, 14 Feb 2019 08:42:54 +0000 (10:42 +0200)
committerMichal Ptacek <m.ptacek@partner.samsung.com>
Thu, 14 Feb 2019 16:05:32 +0000 (16:05 +0000)
Make build/package.sh script to fail on all errors.

Issue-ID: OOM-1660

Change-Id: I3537c719740d4476c07dce284922e352460ae52e
Signed-off-by: Samuli Silvius <s.silvius@partner.samsung.com>
Signed-off-by: Michal Ptacek <m.ptacek@partner.samsung.com>
build/package.sh

index 63774e0..cd2531c 100755 (executable)
@@ -2,7 +2,7 @@
 
 #   COPYRIGHT NOTICE STARTS HERE
 #
-#   Copyright 2018 © Samsung Electronics Co., Ltd.
+#   Copyright 2018-2019 © Samsung Electronics Co., Ltd.
 #
 #   Licensed under the Apache License, Version 2.0 (the "License");
 #   you may not use this file except in compliance with the License.
 
 # Scope of this packaging script is to generate tarfiles for offline installation
 # Build of any additional artifacts is out of scope for this script
+set -e
 
 crash () {
     local exit_code="$1"
     local cause="$2"
-    echo "Packaging script finished prematuraly"
+    echo "Packaging script finished prematurely"
     echo "Cause: $2"
     exit "${exit_code}"
 }