From b81fe60276ef814aafde93e7df251d0f4adf97e3 Mon Sep 17 00:00:00 2001 From: J0WI Date: Tue, 23 Oct 2018 19:03:19 +0200 Subject: community/py-sqlparse: modernize --- community/py-sqlparse/APKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'community/py-sqlparse') diff --git a/community/py-sqlparse/APKBUILD b/community/py-sqlparse/APKBUILD index eaf30e2618..9b89cd44f9 100644 --- a/community/py-sqlparse/APKBUILD +++ b/community/py-sqlparse/APKBUILD @@ -16,8 +16,8 @@ builddir="$srcdir/$_pkgname-$pkgver" build() { cd "$builddir" - python2 setup.py build || return 1 - python3 setup.py build || return 1 + python2 setup.py build + python3 setup.py build } package() { @@ -46,7 +46,7 @@ _py() { # Add version suffix to executable files. local path; for path in "$subpkgdir"/usr/bin/*; do - mv "$path" "$path-$pyver" || return 1 + mv "$path" "$path-$pyver" done } -- cgit v1.2.3