mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-29 13:49:28 +08:00
11 lines
119 B
Bash
Executable File
11 lines
119 B
Bash
Executable File
#!/bin/sh
|
|
|
|
go clean
|
|
|
|
for file in *.go
|
|
do
|
|
echo -n "Compiling $file ..."
|
|
go build "$file"
|
|
echo " done."
|
|
done
|