mirror of
https://github.com/fluencelabs/fluence-service-template
synced 2024-12-04 16:00:17 +00:00
17 lines
143 B
Bash
17 lines
143 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
(
|
||
|
cd hello_world || exit;
|
||
|
./build.sh
|
||
|
)
|
||
|
|
||
|
(
|
||
|
cd url-downloader || exit;
|
||
|
./build.sh
|
||
|
)
|
||
|
|
||
|
(
|
||
|
cd ipfs-node || exit;
|
||
|
./build.sh
|
||
|
)
|