* Thu Feb 20 2025 John Crisp <jcrisp@safeandsoundit.co.uk> 4.0-7.sme
- Fix experimental scalar now forbidded error [SME: 12935]
This commit is contained in:
@@ -1837,8 +1837,9 @@ sub getSourceDirs($) {
|
||||
|
||||
# Remove duplicates
|
||||
# This is done in the calling sub getSourceDirs but we need to do it before
|
||||
@remoteDirs = sort ( keys { map { $_ => 1 } @remoteDirs } );
|
||||
@localDirs = sort ( keys { map { $_ => 1 } @localDirs } );
|
||||
@remoteDirs = sort (keys %{ { map { $_ => 1 } @remoteDirs } });
|
||||
@localDirs = sort (keys %{ { map { $_ => 1 } @localDirs } });
|
||||
|
||||
|
||||
# Write @SrcDirList to file
|
||||
open my $fd, '>',
|
||||
|
Reference in New Issue
Block a user