diff --git a/distro/contents/install b/distro/contents/install index 34b0d20..f1f2c4f 100755 --- a/distro/contents/install +++ b/distro/contents/install @@ -83,25 +83,25 @@ fi #shared exists and is a directory if [ ! -d "$shared" ]; then - echo -e "\nERROR: $shared does not exist or is not a directory, aborting." >&2 + echo -e "\nERROR: shared folder does not exist or is not a directory, aborting." >&2 exit 1; fi #shared exists and is a directory if [ ! -d "$apps" ]; then - echo -e "\nERROR: $apps does not exist or is not a directory, aborting." >&2 + echo -e "\nERROR: apps folder does not exist or is not a directory, aborting." >&2 exit 1; fi #distrolibs exists and is a directory if [ ! -d "$distrolibs" ]; then - echo -e "\nERROR: $distrolibs does not exist or is not a directory, aborting." + echo -e "\nERROR: distro libs does not exist or is not a directory, aborting." exit 1; fi #distroapps exists and is a directory if [ ! -d "$distroapps" ]; then - echo -e "\nERROR: $distroapps does not exist or is not a directory, aborting." + echo -e "\nERROR: distro apps does not exist or is not a directory, aborting." exit 1; fi