diff options
Diffstat (limited to 'packages/create-astro/src/actions/git.ts')
-rw-r--r-- | packages/create-astro/src/actions/git.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/create-astro/src/actions/git.ts b/packages/create-astro/src/actions/git.ts index 00c42dae5..c2a59b0b3 100644 --- a/packages/create-astro/src/actions/git.ts +++ b/packages/create-astro/src/actions/git.ts @@ -3,8 +3,8 @@ import path from 'node:path'; import type { Context } from './context'; import { color } from '@astrojs/cli-kit'; -import { execa } from 'execa'; import { error, info, spinner, title } from '../messages.js'; +import { shell } from '../shell.js'; export async function git(ctx: Pick<Context, 'cwd' | 'git' | 'yes' | 'prompt' | 'dryRun'>) { if (fs.existsSync(path.join(ctx.cwd, '.git'))) { @@ -45,9 +45,9 @@ export async function git(ctx: Pick<Context, 'cwd' | 'git' | 'yes' | 'prompt' | async function init({ cwd }: { cwd: string }) { try { - await execa('git', ['init'], { cwd, stdio: 'ignore' }); - await execa('git', ['add', '-A'], { cwd, stdio: 'ignore' }); - await execa( + await shell('git', ['init'], { cwd, stdio: 'ignore' }); + await shell('git', ['add', '-A'], { cwd, stdio: 'ignore' }); + await shell( 'git', [ 'commit', |