File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
actions/submit-signing-request Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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` ) ;
You can’t perform that action at this time.
0 commit comments