fix subdir regex match
This commit is contained in:
parent
cd3efc420c
commit
dc4a7baf87
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ in pkgs.stdenv.mkDerivation {
|
|||
|
||||
${concatStrings (forEach extraFiles
|
||||
(extraFile: let
|
||||
isInSubdir = (match ".+/.+" extraFile.destination) != null;
|
||||
isInSubdir = (match ".+/.*" extraFile.destination) != null;
|
||||
outDir = concatStrings (init (splitString "/" extraFile.destination));
|
||||
outPath = normalizePath "$out/${extraFile.destination}";
|
||||
in /*sh*/''
|
||||
|
|
Loading…
Reference in a new issue