Adds acme.sh as embedded script

This commit is contained in:
Jamie Curnow
2021-07-15 13:26:14 +10:00
parent 9288fa4757
commit 4d3dfdfa8a
3 changed files with 11 additions and 0 deletions

6
backend/embed/acme.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/bash
echo "This is a placeholder for the official acme.sh script"
echo "that will be embedded into the binary. If you are seeing"
echo "this message then something is not quite right."
exit 1

View File

@@ -13,3 +13,7 @@ var Assets embed.FS
// MigrationFiles are database migrations
//go:embed migrations/*.sql
var MigrationFiles embed.FS
// AcmeSh script
//go:embed acme.sh
var AcmeSh embed.FS