mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
10 lines
155 B
Bash
Executable File
10 lines
155 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
main() {
|
|
declare PLUGIN_NAME="$1"
|
|
|
|
make go-build-plugin copyplugin PLUGIN_NAME=$PLUGIN_NAME PLUGIN_MAKE_TARGET=build
|
|
}
|
|
|
|
main "$@"
|