From 93fb36ab63063b6ff5b4cac2c9c4072b7f1e6548 Mon Sep 17 00:00:00 2001 From: Dennis Trinks Date: Mon, 24 Sep 2012 14:42:46 +0200 Subject: [PATCH] unix2dos does only support UTF-8 - so ignore UTF-16 --- lib/builder-targets.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/builder-targets.sh b/lib/builder-targets.sh index 3ef979f..6fc3c12 100644 --- a/lib/builder-targets.sh +++ b/lib/builder-targets.sh @@ -187,7 +187,7 @@ builder_create() { # Copy files and convert text files to dos format cp -Rv ${PRODUCT_DIR}/OPSI $INST_DIR cp -Rv ${PRODUCT_DIR}/CLIENT_DATA $INST_DIR - find $INST_DIR/CLIENT_DATA -type f | xargs -n1 -iREP sh -c 'file -i $0 | grep "text/plain" && '$CMD_unix2dos' $0 ' REP >/dev/null + find $INST_DIR/CLIENT_DATA -type f | xargs -n1 -iREP sh -c 'file -i $0 | grep -v "utf-16" | grep "text/plain" && '$CMD_unix2dos' $0 ' REP >/dev/null # converting icon file local iconfile_src=${DL_DIST_FILE[$ICON_DL_INDEX]}