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 217
217
package=$( echo $line | cut -d' ' -f1)
218
218
download_url=$( echo $line | cut -d' ' -f3)
219
219
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
220
230
case $package in
221
231
* debian* |* ubuntu* )
222
232
mkdir -p apt/repositories
245
255
do
246
256
package=$( echo $line | cut -d' ' -f1)
247
257
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
248
268
case $package in
249
269
* debian* |* ubuntu* )
250
270
actual_size=$( stat --format=" %s" apt/repositories/$package .zip)
You can’t perform that action at this time.
0 commit comments