Correcting copying of archive specific apt preferences files, thanks to Thanatermesis <thanatermesis@gmail.com> (Closes: #693250).
This commit is contained in:
parent
8286f7d73c
commit
3138b1a4fa
|
@ -290,7 +290,7 @@ EOF
|
|||
do
|
||||
if [ -e "${FILE}" ]
|
||||
then
|
||||
cp config/archives/$(basename ${_FILE} .chroot) chroot/etc/apt/preferences.d
|
||||
cp ${FILE} chroot/etc/apt/preferences.d/$(basename ${FILE} .chroot)
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
@ -847,7 +847,7 @@ EOF
|
|||
do
|
||||
if [ -e "${FILE}" ]
|
||||
then
|
||||
cp config/archives/$(basename ${_FILE} .binary) chroot/etc/apt/preferences.d
|
||||
cp ${FILE} chroot/etc/apt/preferences.d/$(basename ${FILE} .binary)
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue