]> git.sesse.net Git - vlc/commitdiff
NSIS: small path fix
authorGeoffroy Couprie <geal@videolan.org>
Fri, 5 Mar 2010 19:15:14 +0000 (20:15 +0100)
committerGeoffroy Couprie <geal@videolan.org>
Fri, 5 Mar 2010 19:36:00 +0000 (20:36 +0100)
extras/package/win32/vlc.win32.nsi.in

index 8c462a008e8e96f22ee2bb814a62e739982d57b7..80a8ff94f504dcf4d03592c696c6546f1c0db6bf 100644 (file)
@@ -330,13 +330,13 @@ FunctionEnd
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 Function ExecCacheGen
-  ExecWait "$INSTDIR\vlc-cache-gen.exe $APPDATA\\VideoLAN\\VLC"
+  ExecWait "$INSTDIR\vlc-cache-gen.exe $APPDATA\VideoLAN\VLC"
 FunctionEnd
 
 !macro gencache
   SetShellVarContext all
-  CreateDirectory "$APPDATA\\VideoLAN"
-  CreateDirectory "$APPDATA\\VideoLAN\\VLC"
+  CreateDirectory "$APPDATA\VideoLAN"
+  CreateDirectory "$APPDATA\VideoLAN\VLC"
   !insertmacro UAC.CallFunctionAsUser ExecCacheGen
   SetShellVarContext current
 !macroend