]> njoseph.me Git - babashka-scripts.git/blame - bb.edn
git: Fix switching back to current branch in `gup`
[babashka-scripts.git] / bb.edn
CommitLineData
ec37ad05
JN
1{:paths ["scripts"]
2 :tasks
3 {gup {:requires ([git :refer [git-pull-rebase-branch]])
4 :doc "Do a git pull and rebase branch with master in a given directory."
5 :task (git-pull-rebase-branch (get (into [] *command-line-args*) 0))}
6
7 gpa {:requires ([git :refer [git-pull-all]])
8 :doc "Runs `git pull` on all the git repositories in a given directory."
9 :task (git-pull-all (get (into [] *command-line-args*) 0))}
10
11 ebook-to-audiobook {:requires ([ebooks :refer [convert-ebook-to-audiobook]])
12 :doc "A utility to listen to your ebooks using TTS programs. Only tested on macOS with epub files."
13 :task (convert-ebook-to-audiobook (get (into [] *command-line-args*) 0))}
14
15 install-deb {:requires ([debian :refer [install-deb-from-url]])
16 :doc "Install a Debian package given a direct URL to the .deb file."
17 :task (install-deb-from-url (get (into [] *command-line-args*) 0))}
18
19 install-deb-gh {:requires ([debian :refer [install-deb-from-GitHub]])
20 :doc "Install a Debian package given a GitHub URL."
21 :task (install-deb-from-GitHub (get (into [] *command-line-args*) 0))}}}