remove useless tab at end of line in script

This commit is contained in:
Mario Hüttel 2019-10-22 22:59:05 +02:00
parent 0fbbc1db64
commit e90cd1313d
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@ mkdir -p "pot"
for file in $files; do
pot="pot/"$(echo "${file#*/}" | sed -e "s/\//_/g")
pot="${pot%.c}.pot"
pot="${pot%.c}.pot"
xgettext --keyword=_ --language=C --add-comments --sort-output -o "$pot" "$file"
done