Skip to content

Commit

Permalink
Use fastzip
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmorley committed Nov 3, 2016
1 parent 1b334b9 commit 79bcbaa
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion omnibus/config/projects/workup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

project_location_dir = name
package :msi do
fast_msi false
fast_msi true
upgrade_code '769d8737-c798-49d1-bab0-0a31da3ee7df'.capitalize
parameters ProjectLocationDir: project_location_dir
end
16 changes: 9 additions & 7 deletions omnibus/resources/workup/msi/source.wxs.erb
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,15 @@

<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="WINDOWSVOLUME">
<Directory Id="PROJECTLOCATION" Name="$(var.ProjectLocationDir)" >
<Directory Id="PROJECTLOCATIONBIN" Name="bin" >
<Component Id="WorkupPath" Guid="{6AA58B6A-148B-4C4D-8879-A29359AD0BA7}" >
<CreateFolder />
<Environment Id="WorkupPathEnvironment"
Name="PATH" Action="set" Part="last" System="yes" Value="[PROJECTLOCATIONBIN]" />
</Component>
<Directory Id="INSTALLLOCATION" Name="cvent">
<Directory Id="PROJECTLOCATION" Name="$(var.ProjectLocationDir)">
<Directory Id="PROJECTLOCATIONBIN" Name="bin">
<Component Id="WorkupPath" Guid="{6AA58B6A-148B-4C4D-8879-A29359AD0BA7}">
<CreateFolder />
<Environment Id="WorkupPathEnvironment"
Name="PATH" Action="set" Part="last" System="yes" Value="[PROJECTLOCATIONBIN]" />
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def env(cmd, **options)

case os.family
when 'windows'
workup_bin = 'C:/workup/bin/workup.bat'
workup_bin = 'C:/cvent/workup/bin/workup.bat'
policyfile_git = '${env:USERPROFILE}/.workup/Policyfile_git.rb'
else
workup_bin = '/usr/local/bin/workup'
Expand Down

0 comments on commit 79bcbaa

Please sign in to comment.