(declare (unit tick-push)) (module tick-push () (import scheme) (import commands simple-logger) (import tick) (define-command 'push "\ push Push the current state of the local copy of the git repository of tickets to the server." (lambda (args) (if (db-exists?) (db-push) (die! "The tickets database doesn't exist. Run 'tick init' to create it.")))) ) ;; end module