mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-12 16:07:09 +00:00
13 lines
157 B
Bash
Executable File
13 lines
157 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Running timeout test script..."
|
|
|
|
for i in `seq 5`; do
|
|
sleep .5
|
|
echo "running..."
|
|
done
|
|
|
|
echo "This line should not be executed!"
|
|
|
|
exit 0
|