diff options
author | Niels Thykier <niels@thykier.net> | 2016-02-27 10:12:20 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2016-02-27 10:12:20 +0000 |
commit | 4d71c92575b5b614a030787d8981935bfab44889 (patch) | |
tree | 964e85ad70b7681711198e381ee8844322d53c3b | |
parent | ef24f6405d14d1359d4b4e4c2028a28b47035d8b (diff) | |
download | debhelper-4d71c92575b5b614a030787d8981935bfab44889.tar.gz |
dh_compress: Fix minor indentation issue
Signed-off-by: Niels Thykier <niels@thykier.net>
-rwxr-xr-x | dh_compress | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_compress b/dh_compress index cca83cb2..7cac14c3 100755 --- a/dh_compress +++ b/dh_compress @@ -191,7 +191,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { # they are again. foreach (keys %hardlinks) { # Remove old file. - doit("rm","-f","$_"); + doit("rm","-f","$_"); # Make new hardlink. doit("ln","$hardlinks{$_}.gz","$_.gz"); } |