update dependencies

This commit is contained in:
2023-08-05 13:49:45 +06:00
parent ee948395e3
commit 4478193d8a
88 changed files with 24 additions and 23 deletions

7
local.migrate.folder.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
for folder in $(find . -depth -type d -name "main");
do
newFolder="`echo $folder | sed 's/main/androidMain/g'`"
mv $folder "$newFolder"
done