Skip to content

Commit 892d8c6

Browse files
committed
SIGN-7496 Improve naming
1 parent 2ab03f1 commit 892d8c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

actions/submit-signing-request/helper-artifact-download.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ export class HelperArtifactDownload {
6767
core.info(`The signed artifact has been successfully downloaded from SignPath and extracted to ${targetDirectory}`);
6868
}
6969

70-
private resolveOrCreateDirectory(relativePath:string): string {
70+
private resolveOrCreateDirectory(directoryPath:string): string {
7171
const workingDirectory = process.env.GITHUB_WORKSPACE as string;
72-
const absolutePath = path.isAbsolute(relativePath) ? relativePath :
73-
path.join(workingDirectory as string, relativePath);
72+
const absolutePath = path.isAbsolute(directoryPath) ? directoryPath :
73+
path.join(workingDirectory as string, directoryPath);
7474

7575
if (!fs.existsSync(absolutePath)) {
7676
core.info(`Directory "${absolutePath}" does not exist and will be created`);

0 commit comments

Comments
 (0)