mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-05-06 11:04:56 -04:00
11 lines
276 B
Bash
Executable file
11 lines
276 B
Bash
Executable file
#!/bin/bash
|
|
|
|
## Copyright (C) 2012 - 2019 ENCRYPTED SUPPORT LP <adrelanos@riseup.net>
|
|
## See the file COPYING for copying conditions.
|
|
|
|
set -x
|
|
set -e
|
|
set -o pipefail
|
|
|
|
wc -L "/var/lib/apt/lists/"*InRelease
|
|
wc -L "/var/lib/apt/lists/"*InRelease | awk '$1 > 1024 {print; exit 1}'
|