mirror of
https://github.com/Luzifer/archrepo.git
synced 2024-11-10 02:20:02 +00:00
17 lines
425 B
Bash
17 lines
425 B
Bash
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
[[ $(find . -name '*.tar.zstd' | wc -l) -gt 0 ]] || {
|
||
|
echo "No ZStd archives found, nothing to worry"
|
||
|
exit 0
|
||
|
}
|
||
|
|
||
|
[[ $(find . -name '*.tar.xz' | wc -l) -gt 0 ]] && {
|
||
|
echo "Both XZ and ZStd archives found, pay attention!"
|
||
|
}
|
||
|
|
||
|
[[ $(find . -name '*.db.tar.xz' | wc -l) -gt 0 ]] && [[ $(find . -name '*.db.tar.zstd' | wc -l) -gt 0 ]] && {
|
||
|
echo "Found XZ and ZStd databases! Check this!"
|
||
|
exit 1
|
||
|
}
|