18 lines
334 B
Bash
Executable File
18 lines
334 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for m in apppublic sqlor ahserver accounting appbase basellm filemgr msp platformbiz rag rbac uapi
|
|
do
|
|
echo $m ...............
|
|
cd ~/py/$m
|
|
git pull
|
|
if [ -f "setup.cfg" ];then
|
|
pip install .
|
|
fi
|
|
if [ -d "json" ];then
|
|
cd ~/py/$m/json
|
|
sh ./build.sh
|
|
cd ~/py/sage/wwwroot
|
|
ln -s ~/py/$m/wwwroot $m
|
|
fi
|
|
done
|