Skip to content

Commit

Permalink
feat: specify shell
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonrybczak committed Nov 6, 2023
1 parent 8dbef75 commit 8590b80
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ jobs:
node-version: [18, 20]
os: [ubuntu-latest, macos-latest, windows-2019]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
Expand Down Expand Up @@ -79,7 +82,7 @@ jobs:
run: |
git config --global user.name ""
git config --global user.email ""
- name: Install dependencies
run: yarn --frozen-lockfile

Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/commands/init/createGitRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const createGitRepository = async (folder: string) => {
);
loader.succeed();
} catch (e) {
console.log(e);
loader.fail(
'Could not create an empty Git repository, see debug logs with --verbose',
);
Expand Down

0 comments on commit 8590b80

Please sign in to comment.