mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
3dParty make
This commit is contained in:
23
Common/3dParty/make.sh
Normal file
23
Common/3dParty/make.sh
Normal file
@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
SCRIPT=$(readlink -f "$0")
|
||||
SCRIPTPATH=$(dirname "$SCRIPT")
|
||||
|
||||
cd "$SCRIPTPATH"
|
||||
|
||||
for d in */ ; do
|
||||
|
||||
echo "$d"
|
||||
cd "$SCRIPTPATH/$d"
|
||||
|
||||
if [ -f "fetch.sh" ]
|
||||
then
|
||||
bash "fetch.sh"
|
||||
fi
|
||||
if [ -f "build.sh" ]
|
||||
then
|
||||
bash "build.sh"
|
||||
fi
|
||||
|
||||
cd "$SCRIPTPATH"
|
||||
done
|
||||
Reference in New Issue
Block a user