diff options
author | Ted Trask <ttrask01@yahoo.com> | 2016-02-03 14:46:52 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2016-02-03 14:46:52 +0000 |
commit | ad5ae52f0081549dce765651bd94d50fa86b9bb0 (patch) | |
tree | 12af03c5fff5e8e620d69195c93c3907ca17fab5 | |
parent | 4f314bd697ebadd47c156f7966f720ef5cddf0ff (diff) | |
download | alpine-conf-ad5ae52f0081549dce765651bd94d50fa86b9bb0.zip |
setup-apkrepos: add community repo to repositories file
-rw-r--r-- | setup-apkrepos.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/setup-apkrepos.in b/setup-apkrepos.in index e798a63..9263adf 100644 --- a/setup-apkrepos.in +++ b/setup-apkrepos.in @@ -117,9 +117,11 @@ add_mirror() { local mirror="$1" mkdir -p "${APKREPOS_PATH%/*}" echo "${mirror%/}/${release}/main" >> $APKREPOS_PATH + echo "#${mirror%/}/${release}/community" >> $APKREPOS_PATH case "$release" in v[0-9]*) echo "#${mirror%/}/edge/main" >> $APKREPOS_PATH;; + echo "#${mirror%/}/edge/community" >> $APKREPOS_PATH;; esac echo "#${mirror%/}/edge/testing" >> $APKREPOS_PATH echo "" >> $APKREPOS_PATH |