aboutsummaryrefslogtreecommitdiff
path: root/lib/subcommands/pull.bash
diff options
context:
space:
mode:
Diffstat (limited to 'lib/subcommands/pull.bash')
-rw-r--r--lib/subcommands/pull.bash2
1 files changed, 1 insertions, 1 deletions
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
}