Fix paths after composer.* files move

This commit is contained in:
jo 2021-09-11 04:20:50 +02:00
parent f784f483a8
commit 03b109dcb5
12 changed files with 24 additions and 19 deletions

View file

@ -865,7 +865,6 @@ if [ "$in_place" = "t" ]; then
elif [ -n "$web_root" ]; then
verbose "\n * Creating Apache web root directory..."
cp -R ${AIRTIMEROOT}/airtime_mvc ${web_root}
cp -R ${AIRTIMEROOT}/vendor ${web_root}
cp ${AIRTIMEROOT}/VERSION ${web_root}
web_root=${web_root}/airtime_mvc/public/
else
@ -873,7 +872,6 @@ else
web_root="/usr/share/airtime/php"
mkdir -p ${web_root}
cp -R ${AIRTIMEROOT}/airtime_mvc ${web_root}
cp -R ${AIRTIMEROOT}/vendor ${web_root}
cp ${AIRTIMEROOT}/VERSION ${web_root}
web_root=${web_root}/airtime_mvc/public/
fi