Skip to content

Commit

Permalink
BUG: untar component output has the wrong permissions/owner. (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
DriesSchaumont authored May 7, 2024
1 parent 77843cd commit 4ffccef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/io/untar/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ fi

echo "Starting extraction of tarball '$par_input' to output directory '$par_output'."
mkdir -p "$par_output"
echo "executing 'tar --directory=$par_output ${extra_args[@]} -xavf $par_input'"
tar --directory="$par_output" ${extra_args[@]} -xavf "$par_input"
echo "executing 'tar --no-same-owner --no-same-permissions --directory=$par_output ${extra_args[@]} -xavf $par_input'"
tar --no-same-owner --no-same-permissions --directory="$par_output" ${extra_args[@]} -xavf "$par_input"

0 comments on commit 4ffccef

Please sign in to comment.