Dyad/rex.project/x86_64/components/dependencies/coreutils.bash

12 lines
202 B
Bash
Raw Normal View History

2024-02-09 07:04:57 +00:00
#!/bin/bash
set -u
export LC_ALL=C
expected_version="$1"
2024-02-10 14:14:54 +00:00
real_name="coreutils"
2024-02-09 07:04:57 +00:00
app="sort"
2024-02-10 14:14:54 +00:00
ver_check $real_name $app $expected_version || echofail "$real_name $expected_version check failed."
2024-02-09 07:04:57 +00:00
exit $?