17 lines
231 B
Bash
Executable File
17 lines
231 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Build tests for FYSETC_S6
|
|
#
|
|
|
|
# exit on first failure
|
|
set -e
|
|
|
|
# Build examples
|
|
restore_configs
|
|
opt_enable MEATPACK
|
|
use_example_configs FYSETC/S6
|
|
exec_test $1 $2 "FYSETC S6 Example"
|
|
|
|
# cleanup
|
|
restore_configs
|