forked from Dark-Horse-Linux/pyrois
12 lines
197 B
Bash
12 lines
197 B
Bash
|
#!/bin/bash
|
||
|
set -u
|
||
|
|
||
|
export LC_ALL=C
|
||
|
|
||
|
expected_version="$1"
|
||
|
real_name="perl"
|
||
|
app="perl"
|
||
|
|
||
|
ver_check $real_name $app $expected_version || echofail "$real_name $expected_version check failed."
|
||
|
exit $?
|