Skip to content

Commit

Permalink
Fixed a migration bug
Browse files Browse the repository at this point in the history
  • Loading branch information
blegas78 committed Aug 22, 2023
1 parent 49d33d1 commit 418383b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/libpanda-app-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ init () {

if [ "$MANIFEST_VERSION" == "null" ]; then
APPS=$(ls $APP_DIR)
else
elif [ "$MANIFEST_VERSION" ]; then
get_apps_from_manifest
else
APPS=$(ls $APP_DIR)
fi
# echo "APPS: ${APPS[*]}"
fi
Expand Down

0 comments on commit 418383b

Please sign in to comment.