Merge #81512: pkgs/bazel*: Fix path to update-srcDeps.py

This commit is contained in:
Vladimír Čunát 2020-03-02 16:02:58 +01:00
commit a2afee938b
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
2 changed files with 2 additions and 2 deletions

View File

@ -290,7 +290,7 @@ stdenv.mkDerivation rec {
#!${runtimeShell} #!${runtimeShell}
cat ${runCommand "bazel-deps.json" {} '' cat ${runCommand "bazel-deps.json" {} ''
${unzip}/bin/unzip ${src} WORKSPACE ${unzip}/bin/unzip ${src} WORKSPACE
${python3}/bin/python3 ${./update-srcDeps.py} ./WORKSPACE > $out ${python3}/bin/python3 ${../update-srcDeps.py} ./WORKSPACE > $out
''} > ${builtins.toString ./src-deps.json} ''} > ${builtins.toString ./src-deps.json}
''; '';

View File

@ -290,7 +290,7 @@ stdenv.mkDerivation rec {
#!${runtimeShell} #!${runtimeShell}
cat ${runCommand "bazel-deps.json" {} '' cat ${runCommand "bazel-deps.json" {} ''
${unzip}/bin/unzip ${src} WORKSPACE ${unzip}/bin/unzip ${src} WORKSPACE
${python3}/bin/python3 ${./update-srcDeps.py} ./WORKSPACE > $out ${python3}/bin/python3 ${../update-srcDeps.py} ./WORKSPACE > $out
''} > ${builtins.toString ./src-deps.json} ''} > ${builtins.toString ./src-deps.json}
''; '';