Skip to content

Commit 0b42ca1

Browse files
committed
fix: make zsh run a login shell
1 parent 09f69b7 commit 0b42ca1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/run-all-unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- name: Run tests (macOS - zsh login shell)
3737
if: runner.os == 'macOS'
38-
run: zsh -l -c 'npm run test -- ./test/shell --no-file-parallelism --silent=passed-only'
38+
run: zsh -l -i -c 'npm run test -- ./test/shell --no-file-parallelism --silent=passed-only'
3939

4040
- name: Run tests (Linux)
4141
if: runner.os == 'Linux'

src/resources/shell/path/path-resource.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import {
99
resolvePathWithVariables,
1010
Resource,
1111
ResourceSettings,
12-
Utils
12+
Utils,
13+
FileUtils
1314
} from '@codifycli/plugin-core';
1415
import { OS, StringIndexedObject } from '@codifycli/schemas';
1516
import fs from 'node:fs/promises';
1617
import path from 'node:path';
1718

18-
import { FileUtils } from '../../../utils/file-utils.js';
1919
import { untildify } from '../../../utils/untildify.js';
2020
import Schema from './path-schema.json';
2121

0 commit comments

Comments
 (0)