1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/airsonic_ynh.git synced 2024-09-03 18:06:14 +02:00

fix comment

This commit is contained in:
Kay0u 2019-05-24 21:16:54 +02:00
parent aa6387f9c3
commit d0b36f58aa
No known key found for this signature in database
GPG key ID: ABC3F52576D011D3
2 changed files with 4 additions and 4 deletions

View file

@ -90,12 +90,12 @@ ynh_install_app_dependencies $pkg_dependencies
mkdir -p $final_path/transcode
if [ -x /usr/bin/ffmpeg -a ! -e $final_path/transcode/ffmpeg ]; then # Check if 'ffmpeg' is installed and executable
if [ -x /usr/bin/ffmpeg -a ! -e $final_path/transcode/ffmpeg ]; then # Check if 'ffmpeg' is installed, executable and that the symlink doesn't exist
ln -s /usr/bin/ffmpeg $final_path/transcode
fi
# FIXME Not sure if 'lame' is needed ?
if [ -x /usr/bin/lame -a ! -e $final_path/transcode/lame ]; then # Check if 'lame' is installed and executable
if [ -x /usr/bin/lame -a ! -e $final_path/transcode/lame ]; then # Check if 'lame' is installed, executable and that the symlink doesn't exist
ln -s /usr/bin/lame $final_path/transcode
fi

View file

@ -126,12 +126,12 @@ ynh_system_user_create --username=$app
mkdir -p $final_path/transcode
if [ -x /usr/bin/ffmpeg -a ! -e $final_path/transcode/ffmpeg ]; then # Check if 'ffmpeg' is installed and executable
if [ -x /usr/bin/ffmpeg -a ! -e $final_path/transcode/ffmpeg ]; then # Check if 'ffmpeg' is installed, executable and that the symlink doesn't exist
ln -s /usr/bin/ffmpeg $final_path/transcode
fi
# FIXME Not sure if 'lame' is needed ?
if [ -x /usr/bin/lame -a ! -e $final_path/transcode/lame ]; then # Check if 'lame' is installed and executable
if [ -x /usr/bin/lame -a ! -e $final_path/transcode/lame ]; then # Check if 'lame' is installed, executable and that the symlink doesn't exist
ln -s /usr/bin/lame $final_path/transcode
fi