Skip to content

Commit

Permalink
[release] disabling a PreReqsCheck to unblock ppl
Browse files Browse the repository at this point in the history
  • Loading branch information
unrenormalizable committed Sep 3, 2024
1 parent 5b7df18 commit 5d1d3cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/RustAnalyzer/Infrastructure/PreReqsCheckService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ public sealed class PreReqsCheckService : IPreReqsCheckService
new Dictionary<string, Func<IToolchainService, CancellationToken, Task<(bool, string)>>>
{
[nameof(VsVersionCheck)] = VsVersionCheck.CheckAsync,
[nameof(CheckRustupToolchainInstallationAsync)] = CheckRustupToolchainInstallationAsync,

// TODO: https://github.com/kitamstudios/rust-analyzer.vs/issues/54
// [nameof(CheckRustupToolchainInstallationAsync)] = CheckRustupToolchainInstallationAsync,
[nameof(CheckRustupAsync)] = CheckRustupAsync,
[nameof(CheckCargoAsync)] = CheckCargoAsync,
};
Expand Down

1 comment on commit 5d1d3cf

@unrenormalizable
Copy link
Collaborator Author

@unrenormalizable unrenormalizable commented on 5d1d3cf Sep 3, 2024

Choose a reason for hiding this comment

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

workaround for #54

Please sign in to comment.