Skip to content

Commit 2c6bfca

Browse files
committed
fix: import delimiter from path
1 parent 8a4811f commit 2c6bfca

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

dist/setup_cpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/setup_cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/llvm/llvm.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { join, delimiter, addExeExt } from "patha"
1+
import { join, addExeExt } from "patha"
2+
import { delimiter } from "path"
23
import semverLte from "semver/functions/lte"
34
import semverMajor from "semver/functions/major"
45
import { isUrlOnline } from "is-url-online"

src/utils/env/addEnv.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { untildifyUser } from "untildify-user"
44
import { appendFileSync, existsSync, readFileSync } from "fs"
55
import { error, warning } from "ci-log"
66
import { execPowershell } from "exec-powershell"
7-
import { delimiter } from "patha"
7+
import { delimiter } from "path"
88
import escapeSpace from "escape-path-with-spaces"
99

1010
/**

0 commit comments

Comments
 (0)