diff --git a/scripts/install b/scripts/install index 2637f90..9f37fe7 100644 --- a/scripts/install +++ b/scripts/install @@ -104,7 +104,7 @@ ynh_system_user_create --username=$app ### For details, see https://airsonic.github.io/docs/transcode/ -mkdir $final_path/transcode +mkdir -p $final_path/transcode if [ -x /usr/bin/ffmpeg ]; then # Check if 'ffmpeg' is installed and executable ln -s /usr/bin/ffmpeg $final_path/transcode diff --git a/scripts/restore b/scripts/restore index 5e7ee42..804703b 100644 --- a/scripts/restore +++ b/scripts/restore @@ -87,7 +87,7 @@ ynh_install_app_dependencies $pkg_dependencies ### For details, see https://airsonic.github.io/docs/transcode/ -mkdir $final_path/transcode +mkdir -p $final_path/transcode if [ -x /usr/bin/ffmpeg ]; then # Check if 'ffmpeg' is installed and executable ln -s /usr/bin/ffmpeg $final_path/transcode diff --git a/scripts/upgrade b/scripts/upgrade index f4d77b9..1c29d16 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -117,7 +117,7 @@ ynh_system_user_create --username=$app ### For details, see https://airsonic.github.io/docs/transcode/ -mkdir $final_path/transcode +mkdir -p $final_path/transcode if [ -x /usr/bin/ffmpeg ]; then # Check if 'ffmpeg' is installed and executable ln -s /usr/bin/ffmpeg $final_path/transcode