8 lines
134 B
Bash
Executable File
8 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# shellcheck disable=SC2016
|
|
echo 'This plugin requires setting `commands` in your `.drone.yml`. Goodbye!'
|
|
exit 1
|