mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
This cannot be used in codespaces due to the extra mount, but it does allow for local development.
10 lines
130 B
Bash
Executable File
10 lines
130 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
main() {
|
|
declare PLUGIN_NAME="$1"
|
|
|
|
make go-build-plugin copyplugin PLUGIN_NAME=$PLUGIN_NAME
|
|
}
|
|
|
|
main "$@"
|