From 053c6cabf4836e096f877abec30dab0fbcc895ee Mon Sep 17 00:00:00 2001 From: JohnnyRevay <65253638+jan-revay@users.noreply.github.com> Date: Thu, 26 Dec 2024 13:48:00 +0100 Subject: [PATCH] Debian: Bugfix - replace `cd` with `pushd` --- DebianCLI/debian_specific_packages.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DebianCLI/debian_specific_packages.sh b/DebianCLI/debian_specific_packages.sh index 35437ea3c..433f8d522 100755 --- a/DebianCLI/debian_specific_packages.sh +++ b/DebianCLI/debian_specific_packages.sh @@ -10,7 +10,7 @@ . ../prelude.sh mkdir -p ~/x/ -cd ~/x/ +pushd ~/x/ if ! test -d helix; then git clone https://github.com/helix-editor/helix @@ -36,3 +36,4 @@ hx --health # for ubuntu and debian (don't forget to make writing /etc/wsl.conf idempotent) # TODO - uncomment broken packages and add specific versions (so that they compile ok) cargo install du-dust # onefetch procs - temporary broken (won't compile) +popd \ No newline at end of file