Skip to content

Commit

Permalink
removed win64 from platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Early committed Mar 3, 2014
1 parent ae583cc commit e1cdcfb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/sauce-connect-launcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,14 @@ function clean(callback) {
function getArchiveName() {
return {
darwin: "sc-4.0-latest-osx.zip",
win32: "sc-4.0-latest-win32.zip",
win64: "sc-4.0-latest-win32.zip"
win32: "sc-4.0-latest-win32.zip"
}[process.platform] || "sc-4.0-latest-linux.tar.gz";
}

function getScFolderName() {
return {
darwin: "sc-4.0-osx",
win32: "sc-4.0-win32",
win64: "sc-4.0-win32"
win32: "sc-4.0-win32"
}[process.platform] || "sc-4.0-linux";
}

Expand Down

0 comments on commit e1cdcfb

Please sign in to comment.