mirror of
https://git.klmp200.net/ALFRED/ALFRED.git
synced 2025-01-19 02:56:45 +01:00
12 lines
241 B
Bash
12 lines
241 B
Bash
|
# @Author: Bartuccio Antoine
|
||
|
# @Date: 2018-07-25 12:47:23
|
||
|
# @Last Modified by: klmp200
|
||
|
# @Last Modified time: 2018-07-25 12:58:04
|
||
|
#!/bin/sh
|
||
|
cd plugin
|
||
|
rm -f *.so
|
||
|
FILES=`ls *.go`
|
||
|
for FILE in $FILES
|
||
|
do
|
||
|
go build -buildmode=plugin $FILE
|
||
|
done
|