From 9b8467151a6ebefae74fb43e81ce9dfbaac164cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Ga=C3=A1l?= Date: Fri, 28 May 2021 17:23:44 +0200 Subject: [PATCH] replaced pushd and popd in standalone_bootstrap.sh --- standalone_bootstrap.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/standalone_bootstrap.sh b/standalone_bootstrap.sh index 0bb01e0..360fcc2 100755 --- a/standalone_bootstrap.sh +++ b/standalone_bootstrap.sh @@ -1,11 +1,11 @@ #!/bin/sh git clone https://github.com/AxioDL/boo.git -pushd boo +cd boo git submodule update --recursive --init -popd +cd .. git clone https://github.com/libAthena/athena.git -pushd athena +cd athena git submodule update --recursive --init -popd +cd ..