aboutsummaryrefslogtreecommitdiffstats
path: root/community/makepasswd
diff options
context:
space:
mode:
authorRoberto Oliveira <robertoguimaraes8@gmail.com>2017-03-29 12:51:39 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2017-03-29 13:56:25 +0000
commit03837de9695146523af8461f13b5217383528926 (patch)
tree8ce8b03522a7293a2934905f743074c5bcacead5 /community/makepasswd
parent3776409a48e24e64b1701a5f56c302e31f57931e (diff)
downloadaports-03837de9695146523af8461f13b5217383528926.tar.bz2
aports-03837de9695146523af8461f13b5217383528926.tar.xz
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
Diffstat (limited to 'community/makepasswd')
-rw-r--r--community/makepasswd/APKBUILD2
1 files changed, 1 insertions, 1 deletions
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
}