This repository has been archived on 2024-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
helperbot/buildplugins.sh
Brian Buller 14e2827377 Several Fixes/Improvements
* Fix issue with parsing AOC leaderboard JSON
* Add aoc-util for different things
* go mod
* Makefile
2021-12-01 11:41:19 -06:00

13 lines
199 B
Bash
Executable File

#!/bin/bash
mkdir -p build/plugins
cd plugins_src
for i in `ls`; do
echo "Building plugin: $i"
go build -buildmode=plugin $i
if [ $? -eq 0 ]; then
mv *.so ../build/plugins
fi
done
cd ..