diff options
author | Erich Eckner <git@eckner.net> | 2019-10-27 14:02:25 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-10-27 14:02:25 +0100 |
commit | bd116b8947dcb7044f46700b1721613c8d937b0d (patch) | |
tree | fab6fb06bd3ce93f35e87652fe266eef7e23c34b /lib | |
parent | 874c295223832d5d93f0de5edcad0183e49702ec (diff) | |
download | builder-bd116b8947dcb7044f46700b1721613c8d937b0d.tar.xz |
lib/load-configuration: "64k" means 65535, not 65536
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/load-configuration | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/load-configuration b/lib/load-configuration index 83d3beb..f20dc2d 100755 --- a/lib/load-configuration +++ b/lib/load-configuration @@ -217,7 +217,7 @@ if ${i_am_the_master}; then printf 'from_base64("%s"),' \ "$( printf '%s' "$*" | \ - head -c $((64*1024)) | \ + head -c $((64*1024-1)) | \ base64 )" if tty -s; then |