fix: check existent of busybox

if dos2unix is not installed
This commit is contained in:
Ming Di Leom 2023-05-20 11:10:42 +00:00
parent 23a1376170
commit 86dac11a7d
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 10 additions and 3 deletions

View File

@ -36,9 +36,16 @@ check_grep() {
check_grep check_grep
## Fallback to busybox dos2unix ## Fallback to busybox's dos2unix if installed
if ! command -v dos2unix &> /dev/null; then if ! command -v dos2unix &> /dev/null
then
if command -v busybox &> /dev/null
then
alias dos2unix="busybox dos2unix" alias dos2unix="busybox dos2unix"
else
echo "dos2unix or busybox not found"
exit 1
fi
fi fi