From 6a320cd247fdac99d126f24ff8a3068e512af268 Mon Sep 17 00:00:00 2001 From: "Brian R. Bondy" Date: Thu, 12 May 2016 10:09:10 -0400 Subject: [PATCH] Don't change casing on output file Auditors: @aekeus --- tools/buildInstaller.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tools/buildInstaller.js b/tools/buildInstaller.js index 2c5cf6c1102..717cde1518f 100644 --- a/tools/buildInstaller.js +++ b/tools/buildInstaller.js @@ -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}`))