Skip to content
Snippets Groups Projects
Commit 088be41a authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[tests] avoid -q option in dos2unix (for busybox/alpine compatibility)

parent c8758b3f
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
gcc -C -E -I. -o $3 $2
$1 -q $3
# Note: some versions of dos2unix (e.g. Busybox) do not have a '-q' flag,
# so we avoid using them
$1 $3 >/dev/null 2>/dev/null
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment