mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-03-10 22:59:17 -04:00
12 lines
276 B
Bash
Executable File
12 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Copyright (C) 2012 - 2024 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
|
|
## 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}'
|