We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3780490 commit e68ad89Copy full SHA for e68ad89
scripts/install.sh
@@ -60,10 +60,13 @@ $mpremote fs cp main.py :/main.py
60
#$mpremote fs cp -r apps :/
61
62
#if false; then
63
+$mpremote fs mkdir :/apps
64
$mpremote fs cp -r apps/com.micropythonos.* :/apps/
-find apps/ -type l | while read symlink; do
65
+find apps/ -maxdepth 1 -type l | while read symlink; do
66
echo "Handling symlink $symlink"
- $mpremote fs mkdir :/{}
67
+ $mpremote fs mkdir :/"$symlink"
68
+ $mpremote fs cp -r "$symlink"/* :/"$symlink"/
69
+
70
done
71
#fi
72
0 commit comments