diff options
author | Mattias Andrée <m@maandree.se> | 2024-10-08 21:01:24 +0200 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2024-10-08 21:02:00 +0200 |
commit | c1b9fe321f8fda2da23500e07a5c40089525b2ec (patch) | |
tree | 324985076d3e1f3d365a6390f0e113a547f33ac5 /upload | |
parent | Improve upload script (diff) | |
download | aur-packages-c1b9fe321f8fda2da23500e07a5c40089525b2ec.tar.gz aur-packages-c1b9fe321f8fda2da23500e07a5c40089525b2ec.tar.bz2 aur-packages-c1b9fe321f8fda2da23500e07a5c40089525b2ec.tar.xz |
Fix previous commit
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rwxr-xr-x | upload | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,13 +7,13 @@ cd "$(dirname "${0}")" message= skip_build=n -for arg; - if test "${arg}" = skip_build; then +for arg; do + if test "${arg}" = skip-build; then skip_build=y elif test "${arg::8}" = message=; then message="${arg:8}" fi -do +done if test ! "${skip_build}" = y; then makepkg --install --clean |