Skip to content

Commit e025675

Browse files
committed
fix: remove hardcoded local path from DTCG conformance test
1 parent 897a251 commit e025675

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli/src/linter/dtcg/conformance.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default defineConfig({
8181

8282
// Install dependencies in temp dir so they can be imported in config
8383
// Using bun add should be fast if cached
84-
const customPath = `${process.env.PATH || ''}:/Users/dalmaer/.bun/bin`;
84+
const customPath = process.env.PATH || '';
8585
const installProc = spawnSync('bun', ['add', '@terrazzo/cli', '@terrazzo/plugin-css'], {
8686
cwd: tmpDir,
8787
env: { ...process.env, PATH: customPath },

0 commit comments

Comments
 (0)