From d9f659da24ddc69a44f80dcdc5187bb68daa09ad Mon Sep 17 00:00:00 2001 From: sunghan Date: Wed, 2 Aug 2017 22:27:46 +0900 Subject: [PATCH] execute shell as bash for create_appspec.sh Even though the create_appspec.sh is executed as bash at Makefile.unix. It causes abnormal execution like below. -e USER_ENTRY=xxx '-e' is not needed at output file. --- apps/tools/create_appspec.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tools/create_appspec.sh b/apps/tools/create_appspec.sh index 40b4b25..b013905 100755 --- a/apps/tools/create_appspec.sh +++ b/apps/tools/create_appspec.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash ########################################################################### # # Copyright 2017 Samsung Electronics All Rights Reserved. -- 2.7.4