Skip to content

Commit 824e9f4

Browse files
Fix compiler dogfood on windows (microsoft#480)
1 parent 467c2d4 commit 824e9f4

File tree

4 files changed

+39
-4
lines changed

4 files changed

+39
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"changes": [
3+
{
4+
"packageName": "@cadl-lang/compiler",
5+
"comment": "",
6+
"type": "none"
7+
}
8+
],
9+
"packageName": "@cadl-lang/compiler"
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"changes": [
3+
{
4+
"packageName": "@cadl-lang/internal-build-utils",
5+
"comment": "Add `xplatCmd` helper method ",
6+
"type": "patch"
7+
}
8+
],
9+
"packageName": "@cadl-lang/internal-build-utils"
10+
}

packages/compiler/scripts/dogfood.js

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
// @ts-check
2-
import { run } from "@cadl-lang/internal-build-utils";
2+
import { run, xplatCmd } from "@cadl-lang/internal-build-utils";
33
import { readFileSync } from "fs";
4+
import { dirname, resolve } from "path";
5+
import { fileURLToPath } from "url";
46

5-
const version = JSON.parse(readFileSync("package.json", "utf-8")).version;
6-
await run("npm", ["pack"]);
7-
await run("npm", ["install", "-g", `cadl-lang-compiler-${version}.tgz`]);
7+
const pkgRoot = resolve(dirname(fileURLToPath(import.meta.url)), "..");
8+
const version = JSON.parse(readFileSync(resolve(pkgRoot, "package.json"), "utf-8")).version;
9+
10+
console.log("Packing...");
11+
await run(xplatCmd("npm"), ["pack"]);
12+
console.log("Installing...");
13+
await run(xplatCmd("npm"), ["install", "-g", `cadl-lang-compiler-${version}.tgz`]);

packages/internal-build-utils/src/common.ts

+9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ export class CommandFailedError extends Error {
66
}
77
}
88

9+
/**
10+
* Return the correct executable name if on unix or windows(with .cmd extension)
11+
* @param cmd to run
12+
* @returns
13+
*/
14+
export function xplatCmd(cmd: string) {
15+
return process.platform === "win32" ? `${cmd}.cmd` : cmd;
16+
}
17+
918
export interface RunOptions extends SpawnOptions {
1019
silent?: boolean;
1120
encoding?: string;

0 commit comments

Comments
 (0)