From 95adaf514cc70f0436343c2cab7f524ea97021a7 Mon Sep 17 00:00:00 2001 From: Aaron Fiore Date: Tue, 17 Feb 2026 12:39:57 -0800 Subject: [PATCH] client: plugins: bitcoin: pull tags from remote --- client/plugins/docker/bitcoin.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/plugins/docker/bitcoin.bash b/client/plugins/docker/bitcoin.bash index dfcf2a8..067f0db 100755 --- a/client/plugins/docker/bitcoin.bash +++ b/client/plugins/docker/bitcoin.bash @@ -2,7 +2,7 @@ # docker-finance | modern accounting for the power-user # -# Copyright (C) 2025 Aaron Fiore (Founder, Evergreen Crypto LLC) +# Copyright (C) 2025-2026 Aaron Fiore (Founder, Evergreen Crypto LLC) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -230,7 +230,7 @@ function bitcoin::__getter() lib_docker::exec "if [ ! -d $plugin_bitcoin_path ]; then git clone $plugin_arg_remote $plugin_bitcoin_path ; fi" \ || lib_utils::die_fatal "Could not clone '${plugin_arg_remote}' to '${plugin_bitcoin_path}'" - lib_docker::exec "pushd $plugin_bitcoin_path 1>/dev/null && git pull $plugin_arg_remote && popd 1>/dev/null" \ + lib_docker::exec "pushd $plugin_bitcoin_path 1>/dev/null && git pull $plugin_arg_remote --tags && popd 1>/dev/null" \ || lib_utils::die_fatal "Could not pull '${plugin_arg_remote}' to '${plugin_bitcoin_path}'" }