You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
7 lines
193 B
Bash
Executable File
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
|