replaced pushd and popd in standalone_bootstrap.sh

This commit is contained in:
Péter Gaál 2021-05-28 17:23:44 +02:00
parent d96be61e29
commit 9b8467151a
1 changed files with 4 additions and 4 deletions

View File

@ -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 ..