Chapter1.html no longer comes with the default package

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3172 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-11-19 14:08:06 +00:00
parent add6fa839b
commit 8d0f6ab171

View file

@ -24,7 +24,12 @@ Section ""
GetTempFileName $R0
; Extract file
File /oname=$R0 "..\Docs\Chapter1.html"
; Lets skip this one, it's not built to be showin in IE
; File /oname=$R0 "..\Menu\compiler.html"
; and write our own! :)
FileOpen $0 $R0 "w"
FileWrite $0 "<HTML><BODY><H1>HTML page for viewhtml.nsi</H1></BODY></HTML>"
FileClose $0
; View file
ExecWait '"$PROGRAMFILES\Internet Explorer\iexplore.exe" "$R0"'