We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3caa35 commit b9f7194Copy full SHA for b9f7194
wireguard-ssh.sh
@@ -95,7 +95,9 @@ while [ "${SSH_CONNECTION_TIMEOUT}" -gt 0 ] ; do
95
else
96
SSH_CONNECTION_TIMEOUT=$((SSH_CONNECTION_TIMEOUT - 1))
97
# Produce output to encourage GitHub Actions to show progress during the run
98
- echo "."
+ if (( SSH_CONNECTION_TIMEOUT % 10 == 0 )); then
99
+ echo "."
100
+ fi
101
sleep 1
102
fi
103
done
0 commit comments