mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
* use safe_sleep executable in bash scripts * new line at the end of safe_sleep bash script * Replacing relative paths with absolute paths and changing location of safe_sleep Co-authored-by: Ferenc Hammerl <31069338+fhammerl@users.noreply.github.com>
7 lines
65 B
Bash
7 lines
65 B
Bash
#!/bin/bash
|
|
|
|
SECONDS=0
|
|
while [[ $SECONDS != $1 ]]; do
|
|
:
|
|
done
|