File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
GeneredTaskfile/addons/git Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export type GeneratorSettings = {
16
16
runtime : 'local' | 'docker-compose' ;
17
17
developmentProxy : boolean ;
18
18
checkoutGitRequest : 'none' | 'github' | 'gitlab' ;
19
- linkGitHooks : boolean ;
19
+ configureGitHooks : boolean ;
20
20
} ;
21
21
22
22
const Generator = ( ) : ReactElement => {
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import { GeneratorSettings } from '@/components/Generator' ;
2
2
import { TaskfileAddons } from '@/components/Generator/GeneredTaskfile/taskfile' ;
3
3
import loadTemplate from '@/helpers/loadTemplate' ;
4
- import gitLinkHooks from './git-link -hooks.sh' ;
4
+ import gitLinkHooks from './configure-git -hooks.sh' ;
5
5
import githubFunction from './github-pr-function.sh' ;
6
6
import gitlabFunction from './gitlab-mr-function.sh' ;
7
7
8
8
const git = ( settings : GeneratorSettings , addon : TaskfileAddons ) : void => {
9
- if ( settings . linkGitHooks ) {
9
+ if ( settings . configureGitHooks ) {
10
10
addon . projectFunctions . push ( loadTemplate ( gitLinkHooks ) ) ;
11
11
12
12
addon . initCheckCommands . push ( 'project:git-config' ) ;
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ const Settings = (): ReactElement => {
79
79
} ,
80
80
] }
81
81
/>
82
- < Checkbox name = "linkGitHooks" > Create git hooks symlink </ Checkbox >
82
+ < Checkbox name = "configureGitHooks" > Configure git hooks</ Checkbox >
83
83
</ div >
84
84
) ;
85
85
} ;
You can’t perform that action at this time.
0 commit comments