diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-13 14:17:07 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-09-13 14:17:07 -0400 |
commit | b3c36bc62472b56f30ef88b1e0532f83204c7c79 (patch) | |
tree | 05217dfaefd966a9ecc6100219feadea33d5602e | |
parent | aba435a4c9ccfbe4d86365c8b386e841fd893ca1 (diff) |
tools/notsd-move: don't require putting something in each file
-rwxr-xr-x | tools/notsd-move | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/notsd-move b/tools/notsd-move index bf0646528f..85e3fcb3cd 100755 --- a/tools/notsd-move +++ b/tools/notsd-move @@ -683,13 +683,13 @@ breakup_makefile() ( [[ "$(wc -l <<<"$d")" = 1 ]] file="$d/Makefile" fi - elif [[ $file = all ]]; then - printf '%s\n' "$line" | tee -a "${files[@]}" >/dev/null - else if ! in_array "$file" "${files[@]}"; then cat .tmp.move.all > "$file" files+=("$file") fi + elif [[ $file = all ]]; then + printf '%s\n' "$line" | tee -a "${files[@]}" >/dev/null + else printf '%s\n' "$line" >> "$file" fi done < <(fixup_makefile <Makefile.am) |