Skip to content

Commit

Permalink
Remove overusage of . operator
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerim Gueney authored and Thomas Lange committed Feb 21, 2015
1 parent ebc5fb5 commit 8540413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/setup-storage/Commands.pm
Expand Up @@ -315,7 +315,7 @@ sub build_btrfs_commands {
foreach (@devs) {
my $tmp = $_;
$tmp =~ s/\d//;
$pre_req = $pre_req . "pt_complete_" . $tmp . "," unless ($pre_req =~ m/pt_complete_$tmp/);
$pre_req = "${pre_req}pt_complete_${tmp}," unless ($pre_req =~ m/pt_complete_$tmp/);
}
# creates the BTRFS volume/RAID
if ($raidlevel eq 'single') {
Expand Down

0 comments on commit 8540413

Please sign in to comment.