Skip to content

Commit

Permalink
fix: don't delete cfssl and cfssljson (#589)
Browse files Browse the repository at this point in the history
With #568 these executables are no longer downloaded on demand, but
rather predownloaded to the system.

When running dotnet build locally, it attempts to run `./cfssl` and
`./cfssljson` from `/operator` or `$CFSSL_EXECUTABLES_PATH`. However, it
deletes them after it's done.

Next time you try build again after cleaning the local dir it'll fail.

Co-authored-by: Christoph Bühler <[email protected]>
  • Loading branch information
ahmelsayed and buehler authored Sep 13, 2023
1 parent 98c6f3f commit bded799
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ public void Dispose()
{
Delete(_caconfig);
Delete(_cacsr);
Delete(_cfssl);
Delete(_cfssljson);
Delete(_servercsr);
}

Expand Down

0 comments on commit bded799

Please sign in to comment.