diff options
| author | Kamal Wickramanayake <kamal@inbox.lk> | 2026-07-03 21:10:32 +0530 |
|---|---|---|
| committer | Kamal Wickramanayake <kamal@inbox.lk> | 2026-07-03 21:10:32 +0530 |
| commit | a0f3f5a069153c46ac3a85fa75c3ec50fea6ea99 (patch) | |
| tree | 6e97c9b87c314a8a64a25d3ffe10e710db1740fc /microservices/build-all.sh | |
| parent | aa122113ade36f02dc8fdbebdf1232b5c4b8742c (diff) | |
Added Linux deb file creation scripts and build-all.sh
Diffstat (limited to 'microservices/build-all.sh')
| -rwxr-xr-x | microservices/build-all.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/microservices/build-all.sh b/microservices/build-all.sh new file mode 100755 index 0000000..24d49a7 --- /dev/null +++ b/microservices/build-all.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +echo Building all the projects... + +for d in */; do + (cd "$d" && ./build.sh) +done |
