diff options
author | Erich Eckner <git@eckner.net> | 2018-11-16 16:32:16 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-11-16 16:32:16 +0100 |
commit | a31bfd335d65ad497d5946867c9291a20d7ec771 (patch) | |
tree | 4cb101c50f0b87c1846fc766b9d60554e17b5b24 /python-postpic | |
parent | 62adb79269f7fac022f3b1d54a3be19e363d10bf (diff) | |
download | archlinuxewe-a31bfd335d65ad497d5946867c9291a20d7ec771.tar.xz |
msg|msg2|warning -> echo
Diffstat (limited to 'python-postpic')
-rw-r--r-- | python-postpic/PKGBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python-postpic/PKGBUILD b/python-postpic/PKGBUILD index f99069667..b7605745d 100644 --- a/python-postpic/PKGBUILD +++ b/python-postpic/PKGBUILD @@ -44,22 +44,22 @@ prepare() { } build() { - msg2 "Building python..." + echo "Building python..." (cd postpic-${pkgver} python setup.py build ) - msg2 "Building python2..." + echo "Building python2..." (cd postpic-${pkgver}-py2 python2 setup.py build ) } check() { - msg2 "Checking python..." + echo "Checking python..." (cd postpic-${pkgver} python setup.py test ) - msg2 "Checking python2..." + echo "Checking python2..." (cd postpic-${pkgver}-py2 python2 setup.py test ) |