summaryrefslogtreecommitdiffhomepage
path: root/subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-11-15 21:04:53 +0100
committerLucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de>2016-11-15 21:04:53 +0100
commit35633f3dc606541bb17788d492460feae4b2f946 (patch)
tree4918e7f141b915a1918e680f3ed4e671497b8fba /subr
parent59765f508225998d8a73b1da8380ff06b4a6b79c (diff)
downloadmidipix_build-35633f3dc606541bb17788d492460feae4b2f946.tar.bz2
midipix_build-35633f3dc606541bb17788d492460feae4b2f946.tar.xz
build.sh: adds -N (offline mode) flag.
Diffstat (limited to 'subr')
-rw-r--r--subr/pkg.subr23
1 files changed, 13 insertions, 10 deletions
diff --git a/subr/pkg.subr b/subr/pkg.subr
index 2e0e36ae..accdd333 100644
--- a/subr/pkg.subr
+++ b/subr/pkg.subr
@@ -7,7 +7,8 @@
fetch() {
_f_url="${1}"; _f_sha256sum_src="${2}";
_f_url_dst="${DLCACHEDIR}/$(basename "${_f_url}")";
- if [ -e ${_f_url_dst}.fetched ]; then
+ if [ ${ARG_OFFLINE:-0} -eq 1 ]\
+ || [ -e ${_f_url_dst}.fetched ]; then
unset _f_url _f_sha256sum_src _f_url_dst;
return 0;
else
@@ -25,16 +26,18 @@ fetch() {
fetch_git() {
_fg_subdir="${1}"; _fg_url="${2}"; _fg_branch="${3}";
- if [ -e "${DLCACHEDIR}/${_fg_subdir}" ]; then
- cd ${DLCACHEDIR}/${_fg_subdir} &&\
- git pull origin ${_fg_branch:-main} && cd ${OLDPWD};
- else
- git clone ${_fg_url} ${DLCACHEDIR}/${_fg_subdir};
- if [ -n "${_fg_branch}" -a \
- \( -z "${_fg_branch#main}" \) -a \
- \( -z "${_fg_branch#master}" \) ]; then
+ if [ ${ARG_OFFLINE:-0} -eq 0 ]; then
+ if [ -e "${DLCACHEDIR}/${_fg_subdir}" ]; then
cd ${DLCACHEDIR}/${_fg_subdir} &&\
- git checkout -b ${_fg_branch} && cd ${OLDPWD};
+ git pull origin ${_fg_branch:-main} && cd ${OLDPWD};
+ else
+ git clone ${_fg_url} ${DLCACHEDIR}/${_fg_subdir};
+ if [ -n "${_fg_branch}" -a \
+ \( -z "${_fg_branch#main}" \) -a \
+ \( -z "${_fg_branch#master}" \) ]; then
+ cd ${DLCACHEDIR}/${_fg_subdir} &&\
+ git checkout -b ${_fg_branch} && cd ${OLDPWD};
+ fi;
fi;
fi;
secure_rm ${_fg_subdir};