File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 217217 package=$( echo $line | cut -d' ' -f1)
218218 download_url=$( echo $line | cut -d' ' -f3)
219219 echo " Downloading $package .zip from $download_url "
220+ if [ -n " $SKIP_FLUENT_PACKAGE " ]; then
221+ case $package in
222+ packages-lts* |packages-apt* |packages-release* )
223+ # fluent-apt-source, fluent-lts-*, fluent-release
224+ ;;
225+ * )
226+ continue
227+ ;;
228+ esac
229+ fi
220230 case $package in
221231 * debian* |* ubuntu* )
222232 mkdir -p apt/repositories
245255 do
246256 package=$( echo $line | cut -d' ' -f1)
247257 download_size=$( echo $line | cut -d' ' -f2)
258+ if [ -n " $SKIP_FLUENT_PACKAGE " ]; then
259+ case $package in
260+ packages-lts* |packages-apt* |packages-release* )
261+ # fluent-apt-source, fluent-lts-*, fluent-release
262+ ;;
263+ * )
264+ continue
265+ ;;
266+ esac
267+ fi
248268 case $package in
249269 * debian* |* ubuntu* )
250270 actual_size=$( stat --format=" %s" apt/repositories/$package .zip)
You can’t perform that action at this time.
0 commit comments