🧹 Update/move some XXXs/TODOs

This commit is contained in:
Gerber, Mike 2020-02-07 19:42:54 +01:00
parent b08dc66f9f
commit 0889d1a5e3
2 changed files with 1 additions and 2 deletions

2
build
View file

@ -67,7 +67,7 @@ download_to() {
tmpf=`mktemp 'tmp.XXXXX'`
wget -O $tmpf "$download_source"
mkdir -p "$unpack_to"
# XXX Unpacking relies on tar -a unpacking any tar compression, might not work everywhere?
# Unpacking relies on tar -a unpacking any tar compression
tar -C "$unpack_to" -af $tmpf -xv
rm -f $tmpf
)