Skip to content
Snippets Groups Projects
Commit 235b55fe authored by Celeste's avatar Celeste Committed by Kevin Daudt
Browse files

community/mblaze: fix shellcheck

In ./APKBUILD line 29:
	install -m644 *.example "$pkgdir"/usr/share/doc/$pkgname/examples/
                      ^-- SC2035 (info): Use ./*glob* or -- *glob* so names with dashes won't become options.
parent 6e5c0853
No related branches found
No related tags found
1 merge request!53944community/mblaze: use upstream patch to fix lfs64 issue
Pipeline #188968 skipped
......@@ -26,7 +26,7 @@ package() {
make PREFIX="/usr" DESTDIR="$pkgdir" install
mkdir -p "$pkgdir"/usr/share/doc/$pkgname/examples/
install -m644 *.example "$pkgdir"/usr/share/doc/$pkgname/examples/
install -m644 ./*.example "$pkgdir"/usr/share/doc/$pkgname/examples/
install -m644 NEWS.md VIOLATIONS.md README \
"$pkgdir"/usr/share/doc/$pkgname/
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment