File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
packages/create-cli/src/lib/setup Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 11import { select } from '@inquirer/prompts' ;
2- import path from 'node:path' ;
32import * as YAML from 'yaml' ;
4- import { getGitDefaultBranch , logger , toUnixPath } from '@code-pushup/utils' ;
3+ import { getGitDefaultBranch , logger } from '@code-pushup/utils' ;
54import {
65 CI_PROVIDERS ,
76 type CiProvider ,
@@ -12,9 +11,7 @@ import {
1211
1312const GITHUB_WORKFLOW_PATH = '.github/workflows/code-pushup.yml' ;
1413const GITLAB_CONFIG_PATH = '.gitlab-ci.yml' ;
15- const GITLAB_CONFIG_SEPARATE_PATH = toUnixPath (
16- path . join ( '.gitlab' , 'ci' , 'code-pushup.gitlab-ci.yml' ) ,
17- ) ;
14+ const GITLAB_CONFIG_SEPARATE_PATH = '.gitlab/ci/code-pushup.gitlab-ci.yml' ;
1815
1916export async function promptCiProvider ( cliArgs : CliArgs ) : Promise < CiProvider > {
2017 if ( isCiProvider ( cliArgs . ci ) ) {
You can’t perform that action at this time.
0 commit comments