diff --git a/Config/F-DroidRepo/Dockerfile b/Config/F-DroidRepo/Dockerfile index a20b51c..bbe55ee 100644 --- a/Config/F-DroidRepo/Dockerfile +++ b/Config/F-DroidRepo/Dockerfile @@ -122,45 +122,45 @@ ENV FILE39="$FILE39" # Download Remote Files # -RUN bash -c '[[ -n "$FILE00" ]] && wget -P "$DOWNLOAD" "$FILE00"' -RUN bash -c '[[ -n "$FILE01" ]] && wget -P "$DOWNLOAD" "$FILE01"' -RUN bash -c '[[ -n "$FILE02" ]] && wget -P "$DOWNLOAD" "$FILE02"' -RUN bash -c '[[ -n "$FILE03" ]] && wget -P "$DOWNLOAD" "$FILE03"' -RUN bash -c '[[ -n "$FILE04" ]] && wget -P "$DOWNLOAD" "$FILE04"' -RUN bash -c '[[ -n "$FILE05" ]] && wget -P "$DOWNLOAD" "$FILE05"' -RUN bash -c '[[ -n "$FILE06" ]] && wget -P "$DOWNLOAD" "$FILE06"' -RUN bash -c '[[ -n "$FILE08" ]] && wget -P "$DOWNLOAD" "$FILE08"' -RUN bash -c '[[ -n "$FILE09" ]] && wget -P "$DOWNLOAD" "$FILE09"' -RUN bash -c '[[ -n "$FILE10" ]] && wget -P "$DOWNLOAD" "$FILE10"' -RUN bash -c '[[ -n "$FILE11" ]] && wget -P "$DOWNLOAD" "$FILE11"' -RUN bash -c '[[ -n "$FILE12" ]] && wget -P "$DOWNLOAD" "$FILE12"' -RUN bash -c '[[ -n "$FILE13" ]] && wget -P "$DOWNLOAD" "$FILE13"' -RUN bash -c '[[ -n "$FILE14" ]] && wget -P "$DOWNLOAD" "$FILE14"' -RUN bash -c '[[ -n "$FILE15" ]] && wget -P "$DOWNLOAD" "$FILE15"' -RUN bash -c '[[ -n "$FILE16" ]] && wget -P "$DOWNLOAD" "$FILE16"' -RUN bash -c '[[ -n "$FILE17" ]] && wget -P "$DOWNLOAD" "$FILE17"' -RUN bash -c '[[ -n "$FILE18" ]] && wget -P "$DOWNLOAD" "$FILE18"' -RUN bash -c '[[ -n "$FILE19" ]] && wget -P "$DOWNLOAD" "$FILE19"' -RUN bash -c '[[ -n "$FILE20" ]] && wget -P "$DOWNLOAD" "$FILE20"' -RUN bash -c '[[ -n "$FILE21" ]] && wget -P "$DOWNLOAD" "$FILE21"' -RUN bash -c '[[ -n "$FILE22" ]] && wget -P "$DOWNLOAD" "$FILE22"' -RUN bash -c '[[ -n "$FILE23" ]] && wget -P "$DOWNLOAD" "$FILE23"' -RUN bash -c '[[ -n "$FILE24" ]] && wget -P "$DOWNLOAD" "$FILE24"' -RUN bash -c '[[ -n "$FILE25" ]] && wget -P "$DOWNLOAD" "$FILE25"' -RUN bash -c '[[ -n "$FILE26" ]] && wget -P "$DOWNLOAD" "$FILE26"' -RUN bash -c '[[ -n "$FILE27" ]] && wget -P "$DOWNLOAD" "$FILE27"' -RUN bash -c '[[ -n "$FILE28" ]] && wget -P "$DOWNLOAD" "$FILE28"' -RUN bash -c '[[ -n "$FILE29" ]] && wget -P "$DOWNLOAD" "$FILE29"' -RUN bash -c '[[ -n "$FILE30" ]] && wget -P "$DOWNLOAD" "$FILE30"' -RUN bash -c '[[ -n "$FILE31" ]] && wget -P "$DOWNLOAD" "$FILE31"' -RUN bash -c '[[ -n "$FILE32" ]] && wget -P "$DOWNLOAD" "$FILE32"' -RUN bash -c '[[ -n "$FILE33" ]] && wget -P "$DOWNLOAD" "$FILE33"' -RUN bash -c '[[ -n "$FILE34" ]] && wget -P "$DOWNLOAD" "$FILE34"' -RUN bash -c '[[ -n "$FILE35" ]] && wget -P "$DOWNLOAD" "$FILE35"' -RUN bash -c '[[ -n "$FILE36" ]] && wget -P "$DOWNLOAD" "$FILE36"' -RUN bash -c '[[ -n "$FILE37" ]] && wget -P "$DOWNLOAD" "$FILE37"' -RUN bash -c '[[ -n "$FILE38" ]] && wget -P "$DOWNLOAD" "$FILE38"' -RUN bash -c '[[ -n "$FILE39" ]] && wget -P "$DOWNLOAD" "$FILE39"' +RUN bash -c 'if [[ -n "$FILE00" ]]; then wget -P "$DOWNLOAD" "$FILE00"; fi' +RUN bash -c 'if [[ -n "$FILE01" ]]; then wget -P "$DOWNLOAD" "$FILE01"; fi' +RUN bash -c 'if [[ -n "$FILE02" ]]; then wget -P "$DOWNLOAD" "$FILE02"; fi' +RUN bash -c 'if [[ -n "$FILE03" ]]; then wget -P "$DOWNLOAD" "$FILE03"; fi' +RUN bash -c 'if [[ -n "$FILE04" ]]; then wget -P "$DOWNLOAD" "$FILE04"; fi' +RUN bash -c 'if [[ -n "$FILE05" ]]; then wget -P "$DOWNLOAD" "$FILE05"; fi' +RUN bash -c 'if [[ -n "$FILE06" ]]; then wget -P "$DOWNLOAD" "$FILE06"; fi' +RUN bash -c 'if [[ -n "$FILE08" ]]; then wget -P "$DOWNLOAD" "$FILE08"; fi' +RUN bash -c 'if [[ -n "$FILE09" ]]; then wget -P "$DOWNLOAD" "$FILE09"; fi' +RUN bash -c 'if [[ -n "$FILE10" ]]; then wget -P "$DOWNLOAD" "$FILE10"; fi' +RUN bash -c 'if [[ -n "$FILE11" ]]; then wget -P "$DOWNLOAD" "$FILE11"; fi' +RUN bash -c 'if [[ -n "$FILE12" ]]; then wget -P "$DOWNLOAD" "$FILE12"; fi' +RUN bash -c 'if [[ -n "$FILE13" ]]; then wget -P "$DOWNLOAD" "$FILE13"; fi' +RUN bash -c 'if [[ -n "$FILE14" ]]; then wget -P "$DOWNLOAD" "$FILE14"; fi' +RUN bash -c 'if [[ -n "$FILE15" ]]; then wget -P "$DOWNLOAD" "$FILE15"; fi' +RUN bash -c 'if [[ -n "$FILE16" ]]; then wget -P "$DOWNLOAD" "$FILE16"; fi' +RUN bash -c 'if [[ -n "$FILE17" ]]; then wget -P "$DOWNLOAD" "$FILE17"; fi' +RUN bash -c 'if [[ -n "$FILE18" ]]; then wget -P "$DOWNLOAD" "$FILE18"; fi' +RUN bash -c 'if [[ -n "$FILE19" ]]; then wget -P "$DOWNLOAD" "$FILE19"; fi' +RUN bash -c 'if [[ -n "$FILE20" ]]; then wget -P "$DOWNLOAD" "$FILE20"; fi' +RUN bash -c 'if [[ -n "$FILE21" ]]; then wget -P "$DOWNLOAD" "$FILE21"; fi' +RUN bash -c 'if [[ -n "$FILE22" ]]; then wget -P "$DOWNLOAD" "$FILE22"; fi' +RUN bash -c 'if [[ -n "$FILE23" ]]; then wget -P "$DOWNLOAD" "$FILE23"; fi' +RUN bash -c 'if [[ -n "$FILE24" ]]; then wget -P "$DOWNLOAD" "$FILE24"; fi' +RUN bash -c 'if [[ -n "$FILE25" ]]; then wget -P "$DOWNLOAD" "$FILE25"; fi' +RUN bash -c 'if [[ -n "$FILE26" ]]; then wget -P "$DOWNLOAD" "$FILE26"; fi' +RUN bash -c 'if [[ -n "$FILE27" ]]; then wget -P "$DOWNLOAD" "$FILE27"; fi' +RUN bash -c 'if [[ -n "$FILE28" ]]; then wget -P "$DOWNLOAD" "$FILE28"; fi' +RUN bash -c 'if [[ -n "$FILE29" ]]; then wget -P "$DOWNLOAD" "$FILE29"; fi' +RUN bash -c 'if [[ -n "$FILE30" ]]; then wget -P "$DOWNLOAD" "$FILE30"; fi' +RUN bash -c 'if [[ -n "$FILE31" ]]; then wget -P "$DOWNLOAD" "$FILE31"; fi' +RUN bash -c 'if [[ -n "$FILE32" ]]; then wget -P "$DOWNLOAD" "$FILE32"; fi' +RUN bash -c 'if [[ -n "$FILE33" ]]; then wget -P "$DOWNLOAD" "$FILE33"; fi' +RUN bash -c 'if [[ -n "$FILE34" ]]; then wget -P "$DOWNLOAD" "$FILE34"; fi' +RUN bash -c 'if [[ -n "$FILE35" ]]; then wget -P "$DOWNLOAD" "$FILE35"; fi' +RUN bash -c 'if [[ -n "$FILE36" ]]; then wget -P "$DOWNLOAD" "$FILE36"; fi' +RUN bash -c 'if [[ -n "$FILE37" ]]; then wget -P "$DOWNLOAD" "$FILE37"; fi' +RUN bash -c 'if [[ -n "$FILE38" ]]; then wget -P "$DOWNLOAD" "$FILE38"; fi' +RUN bash -c 'if [[ -n "$FILE39" ]]; then wget -P "$DOWNLOAD" "$FILE39"; fi' # Move Downloaded Files #