mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-13 19:29:53 +03:00
7 lines
119 B
Bash
7 lines
119 B
Bash
#!/bin/sh
|
|
|
|
if [ -f /usr/lib/vlc/vlc-cache-gen ]; then
|
|
exec /usr/lib/vlc/vlc-cache-gen "$@" >/dev/null 2>&1
|
|
fi
|
|
exit 0
|
|
|