Skip to content
This repository has been archived by the owner on Nov 11, 2022. It is now read-only.

Commit

Permalink
Merge pull request #10 from fcoulombegoogle/master
Browse files Browse the repository at this point in the history
The installer creates an empty "Drive Fusion" folder and that is unecess...
  • Loading branch information
jpgaribotti committed Apr 17, 2015
2 parents 04fdc27 + aeb2062 commit ce2eaae
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions wrapper.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
!include x64.nsh

; Set the name of the installer
Name "Drive Fusion"
Name "Google Drive Shell Extension"

; File to output wrapped installer
OutFile ${OUTPUT_PATH}
Expand Down Expand Up @@ -50,14 +50,14 @@ section
${EndIf}

Install64Bit:
SetOutPath "$PROGRAMFILES64\Google\Drive Fusion"
SetOutPath "$PROGRAMFILES64\Google\Google Drive Shell Extension"
File /oname=DriveFusion32.msi ${32BIT_MSI_FILE_PATH}
File /oname=DriveFusion64.msi ${64BIT_MSI_FILE_PATH}
File ${DRIVE_PROXY_MSI_PATH}
GoTo ExecuteInstall64

Install32Bit:
SetOutPath "$PROGRAMFILES\Google\Drive Fusion"
SetOutPath "$PROGRAMFILES\Google\Google Drive Shell Extension"
File /oname=DriveFusion32.msi ${32BIT_MSI_FILE_PATH}
File ${DRIVE_PROXY_MSI_PATH}
GoTo ExecuteInstall32
Expand All @@ -75,3 +75,4 @@ ExecuteInstall32:
SetRebootFlag false

sectionEnd

0 comments on commit ce2eaae

Please sign in to comment.