Skip to content

Commit c032989

Browse files
authored
Merge pull request #1370 from trycompai/mariano/agent-improvements
fix: correct Windows path formatting in fleet label creation script
2 parents 07643e2 + f34610f commit c032989

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/app/src/jobs/tasks/device/create-fleet-label-for-org.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ export const createFleetLabelForOrg = task({
3030
}
3131

3232
const fleetDevicePathMac = '/Users/Shared/.fleet';
33-
const fleetDevicePathWindows = 'C\\ProgramData\\CompAI\\Fleet';
34-
const windowsFallbackDir = 'C\\Users\\Public\\CompAI\\Fleet';
33+
const fleetDevicePathWindows = 'C:\\ProgramData\\CompAI\\Fleet';
34+
const windowsFallbackDir = 'C:\\Users\\Public\\CompAI\\Fleet';
3535

3636
// Simple union query: only file table, constrained per platform path
3737
const query = `

0 commit comments

Comments
 (0)