10 lines
183 B
Bash
Executable File
10 lines
183 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for m in accounting appbase basellm filemgr msp platformbiz rag rbac uapi
|
|
do
|
|
cd ~/py/$m/json
|
|
sh ./build.sh
|
|
cd ~/py/sage/wwwroot
|
|
ln -s ~/py/$m/wwwroot $m
|
|
done
|