Updating doc, and deployment procedure
This commit is contained in:
15
build_opencloud_microservices.sh
Executable file
15
build_opencloud_microservices.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
find . -mindepth 2 -maxdepth 2 -name 'Makefile' | while read -r makefile; do
|
||||
dir=$(dirname "$makefile")
|
||||
echo "Running 'make all' in $dir"
|
||||
(
|
||||
cd "$dir" && make all
|
||||
)
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Error: make all failed in $dir"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
|
||||
echo "All make processes completed successfully."
|
||||
Reference in New Issue
Block a user