Skip to content

Commit

Permalink
Merge pull request #117 from theohbrothers/fix/entrypoint-fix-error-m…
Browse files Browse the repository at this point in the history
…essage-for-environment-variable-project_directory

Fix (entrypoint): Fix error message for environment variable `PROJECT_DIRECTORY`
  • Loading branch information
joeltimothyoh authored Jun 1, 2024
2 parents 96eaca1 + a510ead commit e01a2f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/scripts/ci/Invoke-Generate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ try {
$private:ProjectDir = $private:superProjectDir
"Using superproject directory '$private:ProjectDir'" | Write-Verbose
}else {
throw "`$env:PROJECT_DIRECTORY is undefined or superproject directory cannot be determined." | Write-Verbose
throw "`$env:PROJECT_DIRECTORY is undefined or superproject directory cannot be determined."
}
}
$private:generateArgs = @{
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/ci/Invoke-Release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ try {
$private:ProjectDir = $private:superProjectDir
"Using superproject directory '$private:ProjectDir'" | Write-Verbose
}else {
throw "`$env:PROJECT_DIRECTORY is undefined or superproject directory cannot be determined." | Write-Verbose
throw "`$env:PROJECT_DIRECTORY is undefined or superproject directory cannot be determined."
}
}
$private:createReleaseArgs = @{
Expand Down

0 comments on commit e01a2f7

Please sign in to comment.