From 03837de9695146523af8461f13b5217383528926 Mon Sep 17 00:00:00 2001 From: Roberto Oliveira Date: Wed, 29 Mar 2017 12:51:39 +0000 Subject: community/makepasswd: fix non recognized command change pushd command, that is a bash built-in command and is not working, for cd command. As a popd is not being used, it can be changed --- community/makepasswd/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/makepasswd/APKBUILD b/community/makepasswd/APKBUILD index 41d554a025..27c423e393 100644 --- a/community/makepasswd/APKBUILD +++ b/community/makepasswd/APKBUILD @@ -18,7 +18,7 @@ builddir="$srcdir"/$pkgname-$pkgver build() { cd "$builddir" make || return 1 - pushd doc + cd doc make || return 1 } -- cgit v1.2.3