From 14e9fa0f9179166602a6f3866958dcddff312020 Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Tue, 17 Feb 2026 17:44:29 -0500 Subject: [PATCH] fix: create output directory before tar in install-esde.sh Add mkdir -p "$outdir" before the tar command to ensure the output directory exists before attempting to create the tarball. Co-Authored-By: Claude Opus 4.6 --- scripts/install-esde.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install-esde.sh b/scripts/install-esde.sh index ef6ff8d..79ae520 100755 --- a/scripts/install-esde.sh +++ b/scripts/install-esde.sh @@ -40,5 +40,6 @@ fi chmod +x "$esde_dir/usr/local/bin/"* +mkdir -p "$outdir" tar cf "$outdir/esde.tar" -C "$esde_dir" . echo "ES-DE tarball created at $outdir/esde.tar"