Skip to content

Commit 70ea709

Browse files
committed
Update command that tests the installation
1 parent 26eb09a commit 70ea709

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build-cygwin.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,10 @@ const install = async () => {
9494
}
9595

9696
// Run a command to test it out & create initial script files
97-
cp.spawnSync(path.join(__dirname, "re", "_build", "default", "bin", "EsyBash.exe"), ["bash", "-lc", "cd ~ && pwd"]);
97+
cp.spawnSync(path.join(__dirname, ".cygwin", "bin", "bash"), [
98+
"-lc",
99+
"cd ~ && pwd",
100+
]);
98101

99102
console.log("Verifying esy profile set up...");
100103
const bashRcContents = fs.readFileSync(path.join(__dirname, ".cygwin", "usr", "esy", ".bashrc")).toString("utf8");

0 commit comments

Comments
 (0)