Remove package manifest write for restores.

This commit is contained in:
awalsh128 2021-10-21 22:29:23 -07:00
parent 1decb12863
commit 125244158b

View file

@ -27,12 +27,3 @@ else
$script_dir/restore_pkgs.sh ~/cache-apt-pkgs $cache_restore_root
fi
echo ""
echo "Creating package manifest..."
manifest=
for package in $packages; do
item=$package:$(dpkg -s $package | grep Version | awk '{print $2}')
echo "- $item"
manifest=$manifest$item,
done
echo "done."