Piggy: improve user feedback

This commit is contained in:
Thomas Farstrike
2025-06-02 19:52:27 +02:00
parent 9d4806373e
commit 6f7a3e7dbb
3 changed files with 11 additions and 9 deletions
+2 -2
View File
@@ -15,11 +15,11 @@ pushd internal_filesystem/
if [ ! -z "$appname" ]; then
echo "Installing one app: $appname"
appdir="apps/com.example.$appname/"
appdir="apps/$appname/"
target="apps/"
if [ ! -d "$appdir" ]; then
echo "$appdir doesn't exist so taking the builtin/"
appdir="builtin/apps/com.example.$appname/"
appdir="builtin/apps/$appname/"
target="builtin/apps/"
if [ ! -d "$appdir" ]; then
echo "$appdir also doesn't exist, exiting..."