From 80ab8228cc2049bb7c9a56105b958a718c5aa85f Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Tue, 14 Mar 2023 09:53:07 +0100 Subject: Drop --remote from pull command --- lib/subcommands/pull.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/subcommands/pull.bash b/lib/subcommands/pull.bash index dad7e52..4f2ae99 100644 --- a/lib/subcommands/pull.bash +++ b/lib/subcommands/pull.bash @@ -17,6 +17,6 @@ subcommand() [[ -n $dirty ]] && git -C "$BASHTARD_ETCDIR" stash git -C "$BASHTARD_ETCDIR" pull origin master || return 4 - git -C "$BASHTARD_ETCDIR" submodule update --init --recursive --remote || return 4 + git -C "$BASHTARD_ETCDIR" submodule update --init --recursive || return 4 [[ -n $dirty ]] && git -C "$BASHTARD_ETCDIR" stash pop } -- cgit v1.1