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