Skip to content

Commit da6be70

Browse files
committed
Restore task names, broken in previous commit
1 parent d10ba27 commit da6be70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

integration/vscode/ada/src/gnatTaskProvider.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,19 +145,19 @@ const knownTaskKinds: { [id: string]: TaskProperties } = {
145145
tool: 'gprbuild',
146146
args: getGnatArgs([]),
147147
extra: undefined,
148-
title: 'Build project',
148+
title: 'Build current project',
149149
},
150150
checkFile: {
151151
tool: 'gprbuild',
152152
args: getGnatArgs(['-q', '-f', '-c', '-u', '-gnatc', '${fileBasename}']),
153153
extra: undefined,
154-
title: 'Check file',
154+
title: 'Check current file',
155155
},
156156
cleanProject: {
157157
tool: 'gprclean',
158158
args: commonArgs([]), // No -cargs -gnatef is accepted by gprclean
159159
extra: undefined,
160-
title: 'Clean project',
160+
title: 'Clean current project',
161161
},
162162
};
163163

0 commit comments

Comments
 (0)