diff options
author | 2020-03-15 23:03:57 +0100 | |
---|---|---|
committer | 2020-03-15 23:17:46 +0100 | |
commit | e15c35f5881cc4e84d7d009a36507dfa2e5182a5 (patch) | |
tree | 3a36e9eeceaac54354ad604f04aa6acf0df03d28 /utils | |
parent | 23a664be5b0e3a9b656ff04a94dd7ec44ad7a1ca (diff) | |
download | buildroot-e15c35f5881cc4e84d7d009a36507dfa2e5182a5.tar.gz buildroot-e15c35f5881cc4e84d7d009a36507dfa2e5182a5.tar.bz2 |
utils/scancpan: use two spaces indentation in hash file
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/scancpan | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/scancpan b/utils/scancpan index dbd8dab6d3..327a58fc78 100755 --- a/utils/scancpan +++ b/utils/scancpan @@ -800,15 +800,15 @@ while (my ($distname, $dist) = each %dist) { say qq{write ${hashname}} unless $quiet; open my $fh, q{>}, $hashname; say {$fh} qq{# retrieved by scancpan from ${mirror}/}; - say {$fh} qq{md5 ${md5} ${filename}}; - say {$fh} qq{sha256 ${sha256} ${filename}}; + say {$fh} qq{md5 ${md5} ${filename}}; + say {$fh} qq{sha256 ${sha256} ${filename}}; my %license_files = %{$license_files{$distname}}; if (scalar keys %license_files) { say {$fh} q{}; say {$fh} qq{# computed by scancpan}; foreach my $license (sort keys %license_files) { my $digest = $license_files{$license}; - say {$fh} qq{sha256 ${digest} ${license}}; + say {$fh} qq{sha256 ${digest} ${license}}; } } close $fh; |