Skip to content

Commit

Permalink
Check if args are less or equal to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mariodruiz committed Oct 10, 2024
1 parent eeaa8ea commit 3c1c4f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/linux/setup_riallto_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ fi
# Check to make sure that a license file has been provided and that
# a MAC address can be extracted from it for adding into the docker
# image
if [ "$#" -lt 2 ]; then
if [ "$#" -le 2 ]; then
echo "Usage $0 <Xilinx license file> <username (optional)>"
exit 1
fi
Expand Down

0 comments on commit 3c1c4f4

Please sign in to comment.