error message tells error source

This commit is contained in:
6543 2018-06-02 08:09:49 +02:00
parent 3b3c588dcc
commit ef395c4443
1 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ function config_check() {
echo 'iso_source -> squashfs'
else
# ERROR
echo "No corect AIM in Settings"
echo "Settings: No corect AIM"
return 3
fi
fi
@ -32,14 +32,14 @@ function config_check() {
if [ -f "$squashfs_path" ]; then
if [ -n "$iso_aim" ]; then
# ERROR
echo "only Squashfs source in Settings, cant creat ISO"
echo "Settings: only Squashfs source in Settings, cant creat ISO"
return 3
else
echo 'squashfs -> squashfs'
fi
else
# ERROR
echo "No corect Source in Settings"
echo "Settings: No corect Source"
return 3
fi
fi