mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 03:30:05 +00:00
10 lines
258 B
Bash
Executable File
10 lines
258 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euf -o pipefail
|
|
|
|
echo "Given Args: ${*}"
|
|
echo
|
|
echo "This is a placeholder for the official acme.sh script"
|
|
echo "that will be embedded into the binary."
|
|
echo "If you are seeing this message then something is not quite right!"
|
|
exit 1
|