diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-12 14:16:31 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-12 14:16:31 -0400 |
commit | 49124afda043d0f9573379335a63e11a283094bf (patch) | |
tree | 796ef00683b28913420e10fdf22f68a70fffbf64 /caddy/build | |
parent | update build scripts (diff) | |
download | images-49124afda043d0f9573379335a63e11a283094bf.tar.gz images-49124afda043d0f9573379335a63e11a283094bf.tar.bz2 images-49124afda043d0f9573379335a63e11a283094bf.zip |
update build
Diffstat (limited to 'caddy/build')
-rwxr-xr-x | caddy/build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/caddy/build b/caddy/build index a68774a..3c42345 100755 --- a/caddy/build +++ b/caddy/build @@ -1,10 +1,10 @@ #!/bin/sh set -e - -. ../env +me="$(realpath "$0")" +dir="$(dirname "$me")" +. "$dir/../env" IMAGE=caddy -init -buildx +buildx "$dir" "$@" |