citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit 9c67d5b56ae80920f0dc33b2fedaf1736dc3ccab
parent febad30758a0361488e4ab21fb506c2625869841
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 23 Apr 2021 12:05:49 -0700

allow btc-price on lap

Diffstat:
Mbin/btc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/btc b/bin/btc @@ -3,7 +3,7 @@ cmd=${1:-price} shift -if [ $HOSTNAME != "monad" ]; then +if [ $cmd != "price" ] && [ $HOSTNAME != "monad" ]; then exec ssh monad env PATH=/home/jb55/bin:\$PATH btc-$cmd "$@" fi