Skip to content

Commit 4bc8e2f

Browse files
committed
Updated installer script
1 parent 1187525 commit 4bc8e2f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

MacroscopeDocument/MacroscopeDocument/DocumentTypes/MacroscopeDocumentPDF.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ private void ProcessPdfPage ()
106106
Stream ResponseStream = res.GetResponseStream();
107107
List<byte> RawDataList = new List<byte> ();
108108
byte [] RawData;
109+
109110
do
110111
{
111112
int buf = ResponseStream.ReadByte();
@@ -118,6 +119,7 @@ private void ProcessPdfPage ()
118119
break;
119120
}
120121
} while( ResponseStream.CanRead );
122+
121123
RawData = RawDataList.ToArray();
122124
this.ContentLength = RawData.Length;
123125

NSIS/SEOMacroscope-Installer.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Section
5757

5858
SetOutPath "$INSTDIR\$SEOMacroscopeDir"
5959

60-
File ..\\bin\Release\*.*
60+
File ..\bin\Release\*.*
6161

6262
WriteUninstaller "$INSTDIR\$SEOMacroscopeDir\$SEOMacroscopeUninstallExe.exe"
6363

0 commit comments

Comments
 (0)