From 52c8ad066ee25b099fca61956e12b9e2cfa8c87a Mon Sep 17 00:00:00 2001 From: plowsof <77655812+plowsof@users.noreply.github.com> Date: Fri, 7 Jan 2022 23:14:39 +0000 Subject: [PATCH] Update app_env.sh When using /bin/sh in Ubuntu im getting this error: (using bash fixes this) ./app_env.sh: 12: Syntax error: "(" unexpected --- scripts/android/app_env.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/android/app_env.sh b/scripts/android/app_env.sh index 496bdc59f..dc1a15c44 100755 --- a/scripts/android/app_env.sh +++ b/scripts/android/app_env.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash APP_ANDROID_NAME="" APP_ANDROID_VERSION="" @@ -51,4 +51,4 @@ export APP_ANDROID_NAME export APP_ANDROID_VERSION export APP_ANDROID_BUILD_NUMBER export APP_ANDROID_BUNDLE_ID -export APP_ANDROID_PACKAGE \ No newline at end of file +export APP_ANDROID_PACKAGE