Skip to content

Commit

Permalink
Update lt-win-msvc.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mguludag authored May 20, 2024
1 parent b6c06b5 commit 469469b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lt-win-msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Run localtunnel and compiler-explorer
run: |
npm install -g localtunnel
Start-Process -FilePath "powershell.exe" -ArgumentList "C:\setup-ce.ps1" -RedirectStandardOutput $Pwd\output.txt
while($true){ if(Get-Content $Pwd\output.txt | %{$_ -match "webpack compiled in"}){ break } Start-Sleep -s 1 }
Start-Process -FilePath "powershell.exe" -ArgumentList "C:\setup-ce.ps1" -RedirectStandardOutput $pwd\output.txt -RedirectStandardError $pwd\error.txt
while($true){ if(Get-Content $pwd\output.txt | %{$_ -match "webpack compiled in"} -or Get-Content $pwd\error.txt | %{$_ -match "webpack compiled in"}){ break } Start-Sleep -s 1 }
lt --port 10240

0 comments on commit 469469b

Please sign in to comment.