mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-08 19:40:56 +00:00
fix(tests): make tests posix compatible
This commit is contained in:
parent
379ded5a8f
commit
1234c34d0b
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
echo "Running error test script..."
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
echo "Running simple test script..."
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
echo "Running timeout test script..."
|
||||
|
||||
for i in {1..5}; do
|
||||
for i in `seq 5`; do
|
||||
sleep .5
|
||||
echo "running..."
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue
Block a user