Files
MicroPythonOS/appstore_backend/bundleapps.sh
T
2025-04-30 10:25:20 +02:00

7 lines
193 B
Bash
Executable File

ls -1 internal_filesystem/apps | while read appdir; do
echo "$appdir"
pushd internal_filesystem/apps/"$appdir"
zip -r0 ../../../bundled_apps/"$appdir"_0.0.1.zip .
popd
done