1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-06-30 12:58:59 +02:00

fix: newline in modlist

This commit is contained in:
aclist 2024-01-26 18:36:17 +09:00
parent 62613d9533
commit 1a8fd02b60
3 changed files with 7 additions and 7 deletions
helpers

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -o pipefail
version=5.0.0.rc-34
version=5.0.0.rc-35
#CONSTANTS
aid=221100
@ -1192,7 +1192,7 @@ merge_modlists(){
printf "%s\n" "${needs_update[@]}"
}
readarray -t needs_update < <(check_timestamps)
if [[ ${#needs_update[@]} -eq 0 ]]; then
if [[ -z ${needs_update[@]} ]]; then
echo "$diff"
return 0
fi