cloudfoundry / bosh-cli

BOSH CLI v2+
Apache License 2.0
178 stars 162 forks source link

`repack-stemcell` stops prefixing archive members with "./" #641

Closed selzoc closed 8 months ago

selzoc commented 9 months ago

Prior to this commit, running bosh repack-stemcell would result in a repacked stemcell with archive members:

./
./dev_tools_file_list.txt
./image
./stemcell.MF
./packages.txt

while the original stemcell has archive members:

dev_tools_file_list.txt
image
packages.txt
stemcell.MF

This commit preserves the original stemcell archive members in the repacked stemcell. This is useful if you're trying to extract a particular file from the archive by name.

In addition, this commit:

selzoc commented 8 months ago

@jpalermo you're listed as a reviewer here, can you take a look and/or merge?