소스 검색

Add echo in build/joinApps.sh to easy debug (#330)

Rafael Blumberg 3 년 전
부모
커밋
fd93195b6c
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      build/joinApps.sh

+ 3 - 0
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" )