mirror of
https://github.com/actions/runner.git
synced 2025-12-11 04:46:58 +00:00
7 lines
66 B
Bash
7 lines
66 B
Bash
#!/bin/bash
|
|
|
|
SECONDS=0
|
|
while [[ $SECONDS -lt $1 ]]; do
|
|
:
|
|
done
|