mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
11 lines
242 B
Bash
Executable File
11 lines
242 B
Bash
Executable File
#! /bin/bash
|
|
set -e
|
|
|
|
for test in acceptance_tests/*.sh; do
|
|
echo "--------------------------------------------------------------"
|
|
echo "$test"
|
|
echo "--------------------------------------------------------------"
|
|
(exec "$test");
|
|
done
|
|
|