Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Nov 7, 2024
1 parent 7cf8231 commit 91ffff4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crypto3.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ in stdenv.mkDerivation {
ctest --verbose --output-on-failure -R
cd ..
mkdir -p ${placeholder "out"}/test-logs
find .. -type f -name '*_test.xml' -exec cp {} ${placeholder "out"}/test-logs;
find .. -type f -name '*_test.xml' -exec cp {} ${placeholder "out"}/test-logs \;
'';

shellHook = ''
Expand Down
2 changes: 1 addition & 1 deletion parallel-crypto3.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ in stdenv.mkDerivation {
ctest --verbose --output-on-failure -R
cd ..
mkdir -p ${placeholder "out"}/test-logs
find .. -type f -name '*_test.xml' -exec cp {} ${placeholder "out"}/test-logs;
find .. -type f -name '*_test.xml' -exec cp {} ${placeholder "out"}/test-logs \;
'';

shellHook = ''
Expand Down
2 changes: 1 addition & 1 deletion zkevm-framework.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ in stdenv.mkDerivation rec {
ctest --verbose --output-on-failure -R
cd ..
mkdir -p ${placeholder "out"}/test-logs
find .. -type f -name '*_test.xml' -exec cp {} ${placeholder "out"}/test-logs;
find .. -type f -name '*_test.xml' -exec cp {} ${placeholder "out"}/test-logs \;
'';

shellHook = ''
Expand Down

0 comments on commit 91ffff4

Please sign in to comment.