Skip to content

Commit

Permalink
typo mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuchitra532 committed Jan 24, 2025
1 parent c32f836 commit 720be65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
$startTime = Get-Date
$timeoutMinutes = 5
$maxTime = $startTime.AddMinutes($timeoutMinutes)
$logDirectory = "C:\Path\To\Log\Directory"
$logDirectory = "${{ github.workspace }}\GM-TF\logs"
# Ensure the log directory exists
if (-not (Test-Path -Path $logDirectory)) {
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
$startInfo.RedirectStandardOutput = $true
$startInfo.RedirectStandardError = $true
$startInfo.UseShellExecute = $false
$startInfo.CreateNoWindow = $true
$startInfo.CreateNoWindow = $false
# Start the process
$process = New-Object System.Diagnostics.Process
Expand Down

0 comments on commit 720be65

Please sign in to comment.