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

Commit

Permalink
Don't change casing on output file
Browse files Browse the repository at this point in the history
Auditors: @aekeus
  • Loading branch information
bbondy committed May 12, 2016
1 parent 6815297 commit 6a320cd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tools/buildInstaller.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,7 @@ if (isDarwin) {
resultPromise.then(() => {
cmds = [
`mv ${outDir}/Setup.exe ${outDir}/BraveSetup-${arch}.exe`,
`mv ${outDir}/Setup.msi ${outDir}/BraveSetup-${arch}.msi`,
// Change the casing of the output file name, Windows won't allow this in a single mv
`mv ${outDir}/brave-${VersionInfo.braveVersion}-full.nupkg ${outDir}/Brave-${VersionInfo.braveVersion}-full.nupkg2`,
`mv ${outDir}/Brave-${VersionInfo.braveVersion}-full.nupkg2 ${outDir}/Brave-${VersionInfo.braveVersion}-full.nupkg`
`mv ${outDir}/Setup.msi ${outDir}/BraveSetup-${arch}.msi`
]
execute(cmds, {}, console.log.bind(null, 'done'))
}, (e) => console.log(`No dice: ${e.message}`))
Expand Down

1 comment on commit 6a320cd

@aekeus
Copy link
Member

@aekeus aekeus commented on 6a320cd May 12, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++

Please sign in to comment.