Improve the installer. Update the binary that shouldn't be there.

master
poikilos 2020-07-30 23:53:37 -04:00
parent 3491183c8f
commit ff44991f55
2 changed files with 4 additions and 3 deletions

View File

@ -1 +1 @@
/home/owner/git/build-b3view-Qt_5_10_1_System-Release/build/b3view
/home/owner/git/build-b3view-Desktop-Release/build/b3view

View File

@ -44,10 +44,11 @@ if [ ! -f $src_path ]; then
echo "Checking for $src_name in $try_build_path...NOT FOUND"
fi
fi
if [ ! -f $src_path ]; then
if [ ! -f "$src_path" ]; then
customDie "(Nothing done) missing $src_name (You must build first, such as using Qt Creator)."
else
echo "Checking for $src_path...FOUND"
echo "* current directory: `pwd`"
fi
if [ -d "$try_dest_bin" ]; then
@ -62,7 +63,7 @@ if [ -f "$try_dest_bin" ]; then
PROFILE_ENABLE=true
fi
fi
# echo "* using '$src_path'..."
cp -f "$src_path" "$try_dest_bin"
if [ ! -f "$try_dest_bin" ]; then