Skip to content

Commit

Permalink
Fix (entrypoint): Fix error message for environment variable `PROJECT…
Browse files Browse the repository at this point in the history
…_DIRECTORY`
  • Loading branch information
joeltimothyoh committed Jun 1, 2024
1 parent 6e846f6 commit a510ead
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 a510ead

Please sign in to comment.