diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-11-26 19:02:36 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-11-26 19:02:36 +0100 |
commit | d1da731a9e29be8645f3de234ff067cc0737ea3b (patch) | |
tree | 08e31a5d72389a86ce5fbb9aaba25d023e514b1b /community/go-md2man | |
parent | 3adabd4df3bb4c2c67f1ca8d19208db431fdb5d7 (diff) | |
download | aports-d1da731a9e29be8645f3de234ff067cc0737ea3b.tar.bz2 aports-d1da731a9e29be8645f3de234ff067cc0737ea3b.tar.xz |
community/go-md2man: use chmod instead of rm
Diffstat (limited to 'community/go-md2man')
-rw-r--r-- | community/go-md2man/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/go-md2man/APKBUILD b/community/go-md2man/APKBUILD index c3c1ee12ef..b711ec42f2 100644 --- a/community/go-md2man/APKBUILD +++ b/community/go-md2man/APKBUILD @@ -32,7 +32,7 @@ package() { } cleanup_srcdir() { - [ -d src ] && rm -R +r src + [ -d src ] && chmod -R +r src default_cleanup_srcdir } |