Skip to content
Snippets Groups Projects
lupdate.sh 153 B
Newer Older
hluk's avatar
hluk committed
#!/bin/bash
lupdate_args=(
    src/
    plugins/*/*.{cpp,h,ui}
    -ts
    ${1:-translations/*.ts}
)
exec "${LUPDATE:-lupdate-qt5}" "${lupdate_args[@]}"