Skip to content

Commit b3a7d72

Browse files
committed
Update a few more places
1 parent 2c9a8fa commit b3a7d72

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ task extractJavaDependencies(type: Copy) {
6767
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
6868
}
6969

70-
def downloadNewCommands = tasks.register('downloadNewCommands', Download) {
70+
def downloadCommandsV2 = tasks.register('downloadCommandsV2', Download) {
7171
src 'https://raw.githubusercontent.com/wpilibsuite/allwpilib/2027/commandsv2/CommandsV2.json'
7272
dest 'vscode-wpilib/resources/vendordeps/CommandsV2.json'
7373
overwrite true
@@ -87,7 +87,7 @@ def downloadXRPVendordep = tasks.register('downloadXRPVendordep', Download) {
8787

8888
build.dependsOn extractCppDependencies
8989
build.dependsOn extractJavaDependencies
90-
build.dependsOn downloadNewCommands
90+
build.dependsOn downloadCommandsV2
9191
build.dependsOn downloadRomiVendordep
9292
build.dependsOn downloadXRPVendordep
9393

vscode-wpilib/src/shared/projectGeneratorUtils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const ReplacementPatterns = {
2222
* Common vendordep file names
2323
*/
2424
export const VendorDepFiles = {
25-
COMMANDS: 'WPILibNewCommands.json',
25+
COMMANDS: 'CommandsV2.json',
2626
ROMI: 'RomiVendordep.json',
2727
XRP: 'XRPVendordep.json',
2828
};
@@ -164,7 +164,7 @@ export async function setupVendorDeps(
164164
const vendorDir = path.join(toFolder, 'vendordeps');
165165
await mkdirpAsync(vendorDir);
166166

167-
// Add WPILib New Commands
167+
// Add Commands V2
168168
await pathUtils.copyVendorDep(resourcesFolder, VendorDepFiles.COMMANDS, vendorDir);
169169

170170
// Add extra vendordeps

0 commit comments

Comments
 (0)