fix
parent
76b3c2ec1e
commit
a9f5c8445d
|
|
@ -2655,7 +2655,7 @@ class CloudRunnerState {
|
||||||
return CloudRunnerState.buildParams.branch;
|
return CloudRunnerState.buildParams.branch;
|
||||||
}
|
}
|
||||||
static get buildPathFull() {
|
static get buildPathFull() {
|
||||||
return path_1.default.join(CloudRunnerState.buildVolumeFolder, CloudRunnerState.buildParams.buildGuid);
|
return path_1.default.join(`/`, CloudRunnerState.buildVolumeFolder, CloudRunnerState.buildParams.buildGuid);
|
||||||
}
|
}
|
||||||
static get builderPathFull() {
|
static get builderPathFull() {
|
||||||
return path_1.default.join(CloudRunnerState.buildPathFull, `builder`);
|
return path_1.default.join(CloudRunnerState.buildPathFull, `builder`);
|
||||||
|
|
@ -2670,7 +2670,7 @@ class CloudRunnerState {
|
||||||
return path_1.default.join(CloudRunnerState.projectPathFull, `Library`);
|
return path_1.default.join(CloudRunnerState.projectPathFull, `Library`);
|
||||||
}
|
}
|
||||||
static get cacheFolderFull() {
|
static get cacheFolderFull() {
|
||||||
return path_1.default.join(CloudRunnerState.buildVolumeFolder, CloudRunnerState.cacheFolder, CloudRunnerState.branchName);
|
return path_1.default.join('/', CloudRunnerState.buildVolumeFolder, CloudRunnerState.cacheFolder, CloudRunnerState.branchName);
|
||||||
}
|
}
|
||||||
static get lfsDirectory() {
|
static get lfsDirectory() {
|
||||||
return path_1.default.join(CloudRunnerState.repoPathFull, `.git`, `lfs`);
|
return path_1.default.join(CloudRunnerState.repoPathFull, `.git`, `lfs`);
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -18,7 +18,7 @@ export class CloudRunnerState {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static get buildPathFull(): string {
|
public static get buildPathFull(): string {
|
||||||
return path.join(CloudRunnerState.buildVolumeFolder, CloudRunnerState.buildParams.buildGuid);
|
return path.join(`/`, CloudRunnerState.buildVolumeFolder, CloudRunnerState.buildParams.buildGuid);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static get builderPathFull(): string {
|
public static get builderPathFull(): string {
|
||||||
|
|
@ -38,7 +38,12 @@ export class CloudRunnerState {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static get cacheFolderFull(): string {
|
public static get cacheFolderFull(): string {
|
||||||
return path.join(CloudRunnerState.buildVolumeFolder, CloudRunnerState.cacheFolder, CloudRunnerState.branchName);
|
return path.join(
|
||||||
|
'/',
|
||||||
|
CloudRunnerState.buildVolumeFolder,
|
||||||
|
CloudRunnerState.cacheFolder,
|
||||||
|
CloudRunnerState.branchName,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static get lfsDirectory(): string {
|
public static get lfsDirectory(): string {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue