update: stack structure

This commit is contained in:
2026-04-23 09:53:10 -03:00
parent ee431c79df
commit 9892f2caf5
9 changed files with 20634 additions and 26 deletions
+19
View File
@@ -0,0 +1,19 @@
#! /bin/sh
base_path="${1}";
command="${2}";
for item in $base_path/*; do
if test ! -d $item; then
#echo "\"${item}\" is not a directory";
continue;
fi
if test ! -f "${item}/composer.json"; then
#echo "\"${item}\" is not a composer package";
continue;
fi
cd ${item};
composer ${command};
cd -;
done