diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-03-29 12:51:39 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-03-29 13:56:25 +0000 |
commit | 03837de9695146523af8461f13b5217383528926 (patch) | |
tree | 8ce8b03522a7293a2934905f743074c5bcacead5 | |
parent | 3776409a48e24e64b1701a5f56c302e31f57931e (diff) | |
download | aports-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
-rw-r--r-- | community/makepasswd/APKBUILD | 2 |
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 } |