nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1diff --git a/src/client/client.ts b/src/client/client.ts
2index 3e1747e..a842534 100644
3--- a/src/client/client.ts
4+++ b/src/client/client.ts
5@@ -250,6 +250,7 @@ class Client {
6 }
7
8 public async isCLIInstalled(): Promise<Result<boolean>> {
9+ return Return.Value(true);
10 try {
11 // we're in a flatpak, we need to check in other paths.
12 if (import.meta.env.TAURI_IS_FLATPAK === "true") {
13diff --git a/src/components/useInstallCLI.tsx b/src/components/useInstallCLI.tsx
14index ba3be79..ad25f3f 100644
15--- a/src/components/useInstallCLI.tsx
16+++ b/src/components/useInstallCLI.tsx
17@@ -77,7 +77,7 @@ export function useInstallCLI() {
18 variant="outline"
19 isLoading={isLoading}
20 onClick={() => addBinaryToPath({})}
21- isDisabled={status === "success"}>
22+ isDisabled={true}>
23 Add CLI to Path
24 </Button>
25 <AlertDialog isOpen={isOpen} onClose={onClose} leastDestructiveRef={cancelRef}>