Skip to content

Commit

Permalink
Fixed directive in InnoSetup script.
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-osman committed Mar 21, 2015
1 parent ca073b6 commit f355288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/setup.iss.in
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Name: \"desktopicon\"; Description: \"{cm:CreateDesktopIcon}\"; GroupDescription
Source: \"$$absolute_path($${DESTDIR})\\*\"; DestDir: \"{app}\"; Excludes: \"\\vcredist_x??.exe\"; Flags: ignoreversion recursesubdirs createallsubdirs

; Include the VC++ runtime in the installer
#if VCRArch
#ifdef VCRArch
Source: \"{#VCRFilename(VCRArch)}\"; DestDir: \"{tmp}\"; Flags: deleteafterinstall
#endif

Expand All @@ -51,7 +51,7 @@ Name: \"{commondesktop}\\$${PROJECT_TITLE}\"; Filename: \"{app}\\$${EXE_FILENAME
Filename: \"{app}\\$${PROJECT_TITLE}\"; Description: \"{cm:LaunchProgram,{#StringChange(\"$${PROJECT_TITLE}\", \'&\', \'&&\')}}\"; Flags: nowait postinstall skipifsilent

; Install the VC++ runtime (silently)
#if VCRArch
#ifdef VCRArch
Filename: \"{tmp}\\vcredist_{#VCRArch}.exe\"; Parameters: \"/q\";
#endif

Expand Down

0 comments on commit f355288

Please sign in to comment.