From 2125950a81a58132b95fc0a15fcbbcebe3d225c8 Mon Sep 17 00:00:00 2001 From: Dominik Maier Date: Thu, 15 Sep 2022 15:50:51 +0200 Subject: [PATCH] undo tmp changes in unicorn_mode --- unicorn_mode/build_unicorn_support.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/unicorn_mode/build_unicorn_support.sh b/unicorn_mode/build_unicorn_support.sh index 413a49e2..f24c8ce3 100755 --- a/unicorn_mode/build_unicorn_support.sh +++ b/unicorn_mode/build_unicorn_support.sh @@ -156,9 +156,9 @@ echo "[*] Making sure unicornafl is checked out" git status 1>/dev/null 2>/dev/null if [ $? -eq 0 ]; then echo "[*] initializing unicornafl submodule" - #git submodule init || exit 1 - #git submodule update ./unicornafl 2>/dev/null # ignore errors - #git submodule sync ./unicornafl 2>/dev/null # ignore errors + git submodule init || exit 1 + git submodule update ./unicornafl 2>/dev/null # ignore errors + git submodule sync ./unicornafl 2>/dev/null # ignore errors else echo "[*] cloning unicornafl" test -d unicornafl/.git || { @@ -177,8 +177,8 @@ echo "[+] Got unicornafl." cd "unicornafl" || exit 1 echo "[*] Checking out $UNICORNAFL_VERSION" git pull -#sh -c 'git stash && git stash drop' 1>/dev/null 2>/dev/null -#git checkout "$UNICORNAFL_VERSION" || exit 1 +sh -c 'git stash && git stash drop' 1>/dev/null 2>/dev/null +git checkout "$UNICORNAFL_VERSION" || exit 1 echo "[*] making sure afl++ header files match" cp "../../include/config.h" "./include" || exit 1