This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
tomo-old/scripts/plugin.sh

12 lines
225 B
Bash
Raw Permalink Normal View History

2023-05-02 21:19:43 -06:00
#!/bin/sh
pluginInstallPath="$HOME/.local/lib/nasin/plugins"
mkdir -p build
mkdir -p "$pluginInstallPath"
install() {
go build -buildmode=plugin -o "build/$1.so" "./plugins/$1" && \
2023-05-02 21:21:12 -06:00
cp "build/$1.so" $pluginInstallPath
2023-05-02 21:19:43 -06:00
}