Skip to content
Snippets Groups Projects
Commit fbb5b1d4 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

More fixes...

Rev: packaging/windows/installer.vbs:1.7
parent ea4c16f2
No related branches found
No related tags found
No related merge requests found
' '
' $Id: installer.vbs,v 1.6 2009/03/09 11:42:49 grubba Exp $ ' $Id: installer.vbs,v 1.7 2009/03/09 13:15:36 grubba Exp $
' '
' Companion file to bin/install.pike for custom actions. ' Companion file to bin/install.pike for custom actions.
' '
...@@ -18,7 +18,7 @@ Function FinalizePike() ...@@ -18,7 +18,7 @@ Function FinalizePike()
' Note: Opening the files in ASCII-mode, there doesn't seem to be any ' Note: Opening the files in ASCII-mode, there doesn't seem to be any
' binary mode. This means that 8-bit characters might get mangled. ' binary mode. This means that 8-bit characters might get mangled.
Set source = fso.OpenTextFile(targetdir & "lib\master.pike.in", 1, False, 0) Set source = fso.OpenTextFile(targetdir & "lib\master.pike.in", 1, False, 0)
Set dest = fso.CreateTextFile(targetdir & "lib\master.pike", 2, True, 0) Set dest = fso.CreateTextFile(targetdir & "lib\master.pike", True, False)
source_txt = source.ReadAll source_txt = source.ReadAll
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment