From c81be0c4d105e19538a198d0d31ce0116f3a17b0 Mon Sep 17 00:00:00 2001 From: Omar Sy Date: Thu, 11 Jul 2024 00:58:02 +0200 Subject: [PATCH] feat: install --- src/install.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.ts b/src/install.ts index 8a40f90670..da80774f12 100644 --- a/src/install.ts +++ b/src/install.ts @@ -54,7 +54,7 @@ export async function goInstall(version: string): Promise { const chres = await execShellCommand(`cd gno && git checkout ${version}`) printOutput(chres) - const bres = await execShellCommand(`cd gnovm && make build && make install`) + const bres = await execShellCommand(`cd gno/gnovm && make build && make install`) printOutput(bres) const res = await execShellCommand("go env GOPATH")