testing/qownotes: fix quoting for wildcard match

The lang subpkg uses wildcards to move .qm files, but the wildcard was
quoted, causing the wildcard to be taken literally, resulting in an
error.
This commit is contained in:
Kevin Daudt 2020-01-07 21:53:00 +00:00
parent 279d931b15
commit d557333636

View File

@ -40,7 +40,7 @@ package() {
lang() {
install -d "$subpkgdir/usr/share/QOwnNotes/languages/"
install -D -m644 "$builddir/languages/*.qm" "$subpkgdir/usr/share/QOwnNotes/languages/"
install -D -m644 "$builddir"/languages/*.qm "$subpkgdir/usr/share/QOwnNotes/languages/"
}
sha512sums="c540ca18204968cef07d5150366c28c910ac03ba0311342e8741d8ff75c70187842a66321b083f0ccc5f68a40884a1a2b0d23241ae5103da4b4823a472ff1e68 qownnotes-20.1.1.tar.xz"