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 <noreply@anthropic.com>
This commit is contained in:
cloudwithax 2026-02-17 17:44:29 -05:00
parent 33d3d89f3b
commit 14e9fa0f91
1 changed files with 1 additions and 0 deletions

View File

@ -40,5 +40,6 @@ fi
chmod +x "$esde_dir/usr/local/bin/"* chmod +x "$esde_dir/usr/local/bin/"*
mkdir -p "$outdir"
tar cf "$outdir/esde.tar" -C "$esde_dir" . tar cf "$outdir/esde.tar" -C "$esde_dir" .
echo "ES-DE tarball created at $outdir/esde.tar" echo "ES-DE tarball created at $outdir/esde.tar"