mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-21 19:18:41 +00:00
19 lines
318 B
Bash
19 lines
318 B
Bash
#!/bin/bash
|
|
# Description: Command-line double-entry accounting
|
|
set -e
|
|
|
|
case $_PLATFORM in
|
|
darwin)
|
|
_recipe brew
|
|
_brew ledger
|
|
;;
|
|
arch)
|
|
_recipe _arch
|
|
_pacman ledger
|
|
;;
|
|
debian)
|
|
_recipe _apt
|
|
_ppa mbudde/ledger
|
|
_apt ledger
|
|
;;
|
|
esac
|