diff options
Diffstat (limited to 'community/py-sqlparse/APKBUILD')
-rw-r--r-- | community/py-sqlparse/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
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 } |