fixup! uBrowser: Reference EWK browser application
authorArnaud Renevier <a.renevier@samsung.com>
Fri, 6 Feb 2015 19:35:39 +0000 (11:35 -0800)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
When /bin/sh is not bash (for example, when it's dash), trying to launch
ubrowser.sh will result in errors "pushd: not found", "popd: not found"
and such.

This is because ubrowser.sh sources build/common.sh which contains
bashisms.

This patch launches ubrowser.sh with bash, and therefore prevents those
problems.
Reviewed by: Antonio Gomes, Piotr Tworek

Change-Id: I0b51bc9695b35d11cec08fe40ef73d1941012844
Signed-off-by: Arnaud Renevier <a.renevier@samsung.com>
tizen_src/ewk/ubrowser/ubrowser.sh

index 72cd893..2373a8d 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 SCRIPTDIR=$(cd $(dirname $0); pwd -P)
 OUT_DIR=$(echo $SCRIPTDIR | grep -Po "(?<=/)out\..*?(?=/)")