test: Ignore flags passed to shim less

This fixes #126.
This commit is contained in:
Ethan P. 2024-08-24 13:45:36 -07:00
parent 0acf65edde
commit 01c2f9bb94
No known key found for this signature in database
GPG Key ID: B29B90B1B228FEBC

View File

@ -12,4 +12,10 @@ EOF
exit 0
fi
cat "$1"
FILES=()
while [[ $# -gt 0 ]]; do
-*) : ;;
*) FILES+=("$1")
done
cat "${FILES[@]}"