Skip to content

Commit 68198df

Browse files
authored
Fix error message about building code not in project (#825)
1 parent 77da5d5 commit 68198df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vscode-wpilib/src/vscommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export function createVsCommands(context: vscode.ExtensionContext, externalApi:
210210
!preferencesApi.getPreferences(workspace).getIsWPILibProject()
211211
) {
212212
vscode.window.showInformationMessage(
213-
i18n('message', 'Cannot set team number since this is not a WPILib project')
213+
i18n('message', 'Cannot build robot code since this is not a WPILib project')
214214
);
215215
return;
216216
}

0 commit comments

Comments
 (0)