saphyr-serde/bin/suite-to-data
Ethiraric e303cbe543 Squashed 'parser/tests/yaml-test-suite/' content from commit ccfa74e5
git-subtree-dir: parser/tests/yaml-test-suite
git-subtree-split: ccfa74e56afb53da960847ff6e6976c0a0825709
2024-10-12 16:15:38 +02:00

27 lines
526 B
Bash
Executable file

#!/usr/bin/env bash
#------------------------------------------------------------------------------
#
# This program runs bin/suite-to-data.pl using Docker if the Perl module
# dependencies are not installed locally.
#
#------------------------------------------------------------------------------
version=0.0.8
RUN_OR_DOCKER_PULL=true
source "${ROOT:-$PWD}/.bpan/run-or-docker.bash"
check() (
need bash 4.4
need perl 5.28
need perl YAML::PP=0.030
)
dockerfile() (
from alpine
cpan YAML::PP@0.030
)
run "$@"