diff options
Diffstat (limited to 'utils/rd-show')
-rwxr-xr-x | utils/rd-show | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/utils/rd-show b/utils/rd-show index 0a0bc1e..3d54630 100755 --- a/utils/rd-show +++ b/utils/rd-show @@ -244,8 +244,12 @@ sub add } print " * created macro cart -> new show-id = " . $show_id . "\n"; - # TODO: - # create dropbox for: groupname, show-id, rhythm, dow, starttime, len + ($result, $status, $errorstring) = RHRD::rddb::create_show_dropbox($ctx, $groupname, $show_id, $rhythm, $dow, $starttime, $len); + unless(defined $result) { + print STDERR $status . ": " . $errorstring . "\n"; + return 1; + } + print " * created dropbox for show .. " . $result . " rows affected\n"; print " * finished\n"; |