9 lines
258 B
Bash
Executable file
9 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
|