10 lines
244 B
Bash
Executable file
10 lines
244 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
VER=0.0.0
|
|
|
|
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
|