From 98ccc3898ab0a815b38ac1f4b53e19d714b003a4 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Thu, 18 Sep 2008 18:47:20 +0000 Subject: [PATCH] -Fix incorrect quote syntax in windows plugin git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2196 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/windows.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/windows.pm b/xCAT-server/lib/xcat/plugins/windows.pm index 71b156166..b5a3a31c3 100644 --- a/xCAT-server/lib/xcat/plugins/windows.pm +++ b/xCAT-server/lib/xcat/plugins/windows.pm @@ -89,7 +89,7 @@ sub mkimage { print $shandle "net use /delete i:\r\n"; print $shandle 'net use i: %IMGDEST% %PASSWORD% /user:%USER%'."\r\n"; print $shandle 'mkdir i:\images'."\r\n"; - print $shandle 'mkdir i:\images\'.$ent->{arch}."\r\n"; + print $shandle 'mkdir i:\images'."\\".$ent->{arch}."\r\n"; print $shandle "imagex /capture c: i:\\images\\".$ent->{arch}."\\".$ent->{profile}.".wim ".$ent->{profile}."_".$ent->{arch}."\r\n"; print $shandle "IF %PROCESSOR_ARCHITECTURE%==AMD64 GOTO x64\r\n"; print $shandle "IF %PROCESSOR_ARCHITECTURE%==x64 GOTO x64\r\n";