Skip to content

Commit

Permalink
Actual windows version check
Browse files Browse the repository at this point in the history
  • Loading branch information
jtklein committed Oct 4, 2021
1 parent d11d614 commit a9986f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/store/Run.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import filenamify from 'filenamify';
import electronutil from 'electron-util';
import util from 'util';
import fs from 'fs';
import os from 'os';

import Alignment, { FinalAlignment } from './Alignment';
import Option from './Option';
Expand All @@ -27,7 +28,8 @@ const raxmlAscertainmentOptions = raxmlSettings.ascertainmentOptions;

export const MAX_NUM_CPUS = cpus().length;

const winBinaries = false ? [
// On Windows 7 (= 6.1) use older versions of RAxML
const winBinaries = os.release() === "6.1" ? [
// TODO: add raxml ng windows exe
{ name: 'modeltest-ng.exe', version: '0.1.7' },
{ name: 'raxmlHPC_Win7.exe', multithreaded: false, version: '8.2.10' },
Expand Down

0 comments on commit a9986f5

Please sign in to comment.