fix: check existent of busybox

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

View File

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