Selaa lähdekoodia

feat: Convert line endings (#494)

Kroese 1 vuosi sitten
vanhempi
sitoutus
0a5d491177
1 muutettua tiedostoa jossa 5 lisäystä ja 2 poistoa
  1. 5 2
      src/install.sh

+ 5 - 2
src/install.sh

@@ -936,7 +936,7 @@ copyOEM() {
 
   local dir="$1"
   local folder="/oem"
-  local src
+  local src dest file
 
   [ ! -d "$folder" ] && folder="/OEM"
   [ ! -d "$folder" ] && folder="$STORAGE/oem"
@@ -952,13 +952,16 @@ copyOEM() {
     error "failed to locate 'sources' folder in ISO image!" && return 1
   fi
 
-  local dest="$src/\$OEM\$/\$1/"
+  dest="$src/\$OEM\$/\$1/"
   mkdir -p "$dest"
 
   if ! cp -r "$folder" "$dest"; then
     error "Failed to copy OEM folder!" && return 1
   fi
 
+  file=$(find "$dest" -maxdepth 1 -type f -iname install.bat | head -n 1)
+  [ -f "$file" ] && unix2dos -q "$file"
+
   return 0
 }