diff options
author | BytesGalore <3903215+BytesGalore@users.noreply.github.com> | 2021-10-12 22:50:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 22:50:13 +0200 |
commit | f5c8afcf0b63083ddd0afcdb013e13eb5a873780 (patch) | |
tree | 742cccb90fc7a5e29476e3db7e6750d0e1116902 /apps/installer/includes | |
parent | 13eacaed8dee05f6227778cce09e0172682e7df4 (diff) |
feat(APPS/installer): configure remote and pull branch in conf/config.sh (#8364)
Co-authored-by: BytesGalore <3903215+BytesGalore@users.noreply.github.com>
Diffstat (limited to 'apps/installer/includes')
-rw-r--r-- | apps/installer/includes/functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/installer/includes/functions.sh b/apps/installer/includes/functions.sh index cd4d746e51..d7f1725387 100644 --- a/apps/installer/includes/functions.sh +++ b/apps/installer/includes/functions.sh @@ -47,7 +47,7 @@ function inst_configureOS() { function inst_updateRepo() { cd "$AC_PATH_ROOT" - git pull origin $(git rev-parse --abbrev-ref HEAD) + git pull "$ORIGIN_REMOTE" "$INSTALLER_PULL_FROM" } function inst_resetRepo() { |