Skip to content

Commit 622d3d0

Browse files
committed
fix
1 parent 5b3e6b7 commit 622d3d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/hostname.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ jobs:
5555
- name: Run hostname check script
5656
run: |
5757
echo "Hostname: $env:COMPUTERNAME"
58-
echo "Fully Qualified Domain Name: $([System.Net.Dns]::GetHostByName("").HostName)"
58+
echo "Fully Qualified Domain Name: $([System.Net.Dns]::GetHostByName('').HostName)"
5959
echo "Pinging localhost..."
6060
ping -n 1 localhost
6161
echo "Pinging hostname..."
6262
ping -n 1 $env:COMPUTERNAME
6363
echo "Pinging FQDN..."
64-
ping -n 1 $([System.Net.Dns]::GetHostByName("").HostName)
64+
ping -n 1 $([System.Net.Dns]::GetHostByName('').HostName)
6565
shell: pwsh
6666
if: runner.os == 'Windows' && always()

0 commit comments

Comments
 (0)