summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Druart <jonathan.druart@gmail.com>2020-08-14 14:04:03 +0200
committerJonathan Druart <jonathan.druart@gmail.com>2020-08-14 14:04:03 +0200
commit13b9752115a0bcc9b329fcd1f0383342de3312bf (patch)
tree51748cceaf90a79b565409314437e5801aec0a69
parente95658e7869abb04896740fff34b58d81f6b3c97 (diff)
downloadgit-bz-13b9752115a0bcc9b329fcd1f0383342de3312bf.tar.gz
Issue #6 - Restore continue, skip and abort
-rwxr-xr-xgit-bz3
1 files changed, 3 insertions, 0 deletions
diff --git a/git-bz b/git-bz
index de626c0..fd95b36 100755
--- a/git-bz
+++ b/git-bz
@@ -2701,6 +2701,9 @@ if command == 'add-url':
do_add_url(*args)
elif command == 'apply':
bugs_applied = []
+ if not args:
+ # continue, skip or abort
+ do_apply(*args)
for bug_ref in args:
if bug_ref in bugs_applied:
continue