From 9f092010fb963087816b7d1c0f942138a226e5c6 Mon Sep 17 00:00:00 2001 From: Piotr Grabowski Date: Mon, 12 Sep 2022 17:13:23 +0200 Subject: [PATCH] chore(makefile): replace pushd with cd --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a77e761..5da8465 100755 --- a/Makefile +++ b/Makefile @@ -19,6 +19,6 @@ dist: build cp README.md target/dist/gomicsv; \ cp COPYING.md target/dist/gomicsv; \ cp CHANGELOG.md target/dist/gomicsv; \ - pushd target/dist; \ + cd target/dist; \ zip -r ../Gomics-v_$(VERSION).zip gomicsv; \ rm -rf gomicsv; \