Skip to content

Commit

Permalink
Comment out astral usage
Browse files Browse the repository at this point in the history
  • Loading branch information
jtklein committed Sep 7, 2022
1 parent c71c0f9 commit cb4e41c
Showing 1 changed file with 21 additions and 18 deletions.
39 changes: 21 additions & 18 deletions src/app/store/Run.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,13 @@ const winBinaries =
initial: true,
type: 'raxml',
},
{
name: 'astral.5.7.8.jar',
multithreaded: false,
version: '5.7.8',
type: 'astral',
},
// TODO: put back in Astral
// {
// name: 'astral.5.7.8.jar',
// multithreaded: false,
// version: '5.7.8',
// type: 'astral',
// },
]
: [
// TODO: add raxml ng windows exe
Expand Down Expand Up @@ -97,12 +98,13 @@ const winBinaries =
initial: true,
type: 'raxml',
},
{
name: 'astral.5.7.8.jar',
multithreaded: false,
version: '5.7.8',
type: 'astral',
},
// TODO: put back in Astral
// {
// name: 'astral.5.7.8.jar',
// multithreaded: false,
// version: '5.7.8',
// type: 'astral',
// },
];

const likelyARM = os.arch().includes('arm64') || os.cpus()[0].model.includes('Apple');
Expand Down Expand Up @@ -165,12 +167,13 @@ const allBinaries = is.windows
version: '8.2.12',
type: 'raxml',
},
{
name: 'astral.5.7.8.jar',
multithreaded: false,
version: '5.7.8',
type: 'astral',
},
// TODO: put back in Astral
// {
// name: 'astral.5.7.8.jar',
// multithreaded: false,
// version: '5.7.8',
// type: 'astral',
// },
];

const binaries = allBinaries.filter(({ multithreaded }) =>
Expand Down

0 comments on commit cb4e41c

Please sign in to comment.