summaryrefslogtreecommitdiffhomepage
path: root/subr.rtl
diff options
context:
space:
mode:
authorLucía Andrea Illanes Albornoz <lucia@luciaillanes.de>2023-03-21 13:03:54 +0100
committerLucía Andrea Illanes Albornoz <lucia@luciaillanes.de>2023-03-21 13:03:54 +0100
commit8159ac98561f4f4f92bf161a9e10b0507d634e5d (patch)
treee26f687c2d3f37966ca5efc66c2f8efad32858fe /subr.rtl
parent2c3a8f42d10985036ffe349ac43f4ad16462457c (diff)
downloadmidipix_build-8159ac98561f4f4f92bf161a9e10b0507d634e5d.tar.bz2
midipix_build-8159ac98561f4f4f92bf161a9e10b0507d634e5d.tar.xz
subr.rtl/rtl_fetch_git.subr: don't pass --remote to git-submodule(1).
Diffstat (limited to 'subr.rtl')
-rw-r--r--subr.rtl/rtl_fetch_git.subr2
1 files changed, 1 insertions, 1 deletions
diff --git a/subr.rtl/rtl_fetch_git.subr b/subr.rtl/rtl_fetch_git.subr
index 55adab65..f4ac293e 100644
--- a/subr.rtl/rtl_fetch_git.subr
+++ b/subr.rtl/rtl_fetch_git.subr
@@ -33,7 +33,7 @@ rtlp_fetch_url_git() {
git pull --rebase ${_rpfug_git_args} origin "${_rpfug_git_branch:-main}";
exit "${?}";) || return 1;
(rtl_fileop cd "${_rpfug_dlcachedir_full}" &&\
- git submodule update --remote) || return 1;
+ git submodule update) || return 1;
else
if git clone \
${_rpfug_git_args} \