diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-12-07 12:02:34 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-12-07 22:08:03 +0100 |
commit | dab47af5d9504b325d791bbda48fa9249a139f90 (patch) | |
tree | a4f51dd873d5ff7f64567c2c1b63bf312794ba61 | |
parent | c83fa6b0af75650724208598628058802d2f7192 (diff) | |
download | buildroot-dab47af5d9504b325d791bbda48fa9249a139f90.tar.gz buildroot-dab47af5d9504b325d791bbda48fa9249a139f90.zip |
pkg-download: fix arguments to hash checking script
The argument are correctly used, but incorrectly documented.
Inverse the comments to match the actual usage.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rwxr-xr-x | support/download/check-hash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/download/check-hash b/support/download/check-hash index 067e7a2395..13e361afca 100755 --- a/support/download/check-hash +++ b/support/download/check-hash @@ -3,8 +3,8 @@ set -e # Helper to check a file matches its known hash # Call it with: -# $1: the full path to the file to check -# $2: the path of the file containing all the the expected hashes +# $1: the path of the file containing all the the expected hashes +# $2: the full path to the file to check h_file="${1}" file="${2}" |