mirror of
https://github.com/goreleaser/nfpm
synced 2025-04-17 22:08:00 +02:00
* feat: cleanup and simplify the file adding interface * docs: update the configuration docs to focus on the new contents format for specifying files * docs: correct spelling Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
6 lines
114 B
Bash
6 lines
114 B
Bash
#!/bin/bash
|
|
|
|
if [ "$1" = "triggered" ] && [ "$2" = "manual-trigger" ]; then
|
|
echo "Ok" > /tmp/trigger-proof
|
|
fi
|