Skip to content
Snippets Groups Projects
Verified Commit 83974d1b authored by Johannes Schauer Marin Rodrigues's avatar Johannes Schauer Marin Rodrigues
Browse files

sbin/reform-flash-uboot: fix functionality that running without arguments just...

sbin/reform-flash-uboot: fix functionality that running without arguments just updates /boot/flash.bin
parent 82d7ff12
No related branches found
No related tags found
No related merge requests found
......@@ -82,7 +82,7 @@ usage() {
fi
}
if [ "$#" -gt 0 ] && [ "$1" = "--help" ] || [ "$#" -eq 0 ] || [ "$1" = "-h" ]; then
if [ "$#" -gt 0 ] && [ "$1" = "--help" ] || [ "$#" -gt 0 ] && [ "$1" = "-h" ]; then
usage
exit 0
fi
......
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