From fd93195b6c3db2c3a4fa673d5ecf7d382601148c Mon Sep 17 00:00:00 2001 From: Rafael Blumberg Date: Sat, 28 May 2022 17:30:51 +0100 Subject: [PATCH] Add echo in build/joinApps.sh to easy debug (#330) --- build/joinApps.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/joinApps.sh b/build/joinApps.sh index 216c6d9..71ed6b6 100755 --- a/build/joinApps.sh +++ b/build/joinApps.sh @@ -20,6 +20,9 @@ cd "$scriptDir/.." || exit # Parsing all json files in apps folder for app in template/apps/*.json; do + # Output app name to easy debug + echo "adding $app to template..." + # Adding app template to 32 and 64 bits variables appjson=$( cat "$app" )