Fix Nyx build script (#965)

due to the call to pushd on line 23 not being directed at packer, the wrong commit was being used and so that resulted in the wrong init.cpio.gz being generated which hangs when trying to run the libxml2 examples however using the right commit (86b159bafc0b2ba8feeaa8761a45b6201d34084f) fixes this problem.
This commit is contained in:
humpty99 2022-12-21 21:29:42 +10:00 committed by GitHub
parent d77d9d5f31
commit de6ee8b161
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ fi
if [ ! -e ./packer/.git ]; then if [ ! -e ./packer/.git ]; then
rm -rf ./packer rm -rf ./packer
git clone https://github.com/syheliel/packer.git || exit 1 git clone https://github.com/syheliel/packer.git || exit 1
pushd QEMU-Nyx pushd packer
git reset --hard 86b159bafc0b2ba8feeaa8761a45b6201d34084f git reset --hard 86b159bafc0b2ba8feeaa8761a45b6201d34084f
popd popd
fi fi