Skip to content
Snippets Groups Projects
Verified Commit 0a98be6d authored by Max Rees's avatar Max Rees
Browse files

user/vlc: remove &> bashism from trigger

parent 57e345c7
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=vlc
pkgver=3.0.7.1
pkgrel=0
pkgrel=1
pkgdesc="Multi-platform MPEG, VCD/DVD, and DivX player"
triggers="vlc-libs.trigger=/usr/lib/vlc/plugins"
pkgusers="vlc"
......@@ -142,7 +142,7 @@ check() {
}
_mv() {
local dir=${1%/*}
local dir="${1%/*}"
mkdir -p "$subpkgdir"/$dir
mv "$1" "$subpkgdir"/$dir/
}
......
#!/bin/sh
exec /usr/lib/vlc/vlc-cache-gen "$@" >&/dev/null
exec /usr/lib/vlc/vlc-cache-gen "$@" >/dev/null 2>&1
exit 0
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