Răsfoiți Sursa

fix: Warn on invalid path (#1168)

Kroese 3 luni în urmă
părinte
comite
96fbb26d6f
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      src/install.sh

+ 2 - 2
src/install.sh

@@ -206,7 +206,7 @@ detectCustom() {
   CUSTOM=""
 
   if [ -d "/$fname" ]; then
-    error "The file /$fname has an invalid path!" && return 1
+    error "The file /$fname does not exist, please check that you mapped it to a valid path!" && return 1
   fi
 
   file=$(find / -maxdepth 1 -type f -iname "$fname" | head -n 1)
@@ -495,7 +495,7 @@ setXML() {
   local file="/custom.xml"
 
   if [ -d "$file" ]; then
-    warn "The file $file has an invalid path!"
+    warn "The file $file does not exist, please check that you mapped it to a valid path!"
   fi
 
   [ ! -f "$file" ] || [ ! -s "$file" ] && file="$STORAGE/custom.xml"