Skip to content

Commit

Permalink
🔧 Fix API-spec-path;
Browse files Browse the repository at this point in the history
  • Loading branch information
joergdw committed Mar 26, 2024
1 parent 679d804 commit 95ffaca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 6 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,12 @@
});

openapi-specifications = {
app-autoscaler-api = builtins.filterSource
(path: type: builtins.match ".*\.ya?ml" (baseNameOf path) != null && type == "regular")
"${app-autoscaler-release}/api";
app-autoscaler-api =
let
apiPath = ./api;
in builtins.filterSource
(path: type: builtins.match ".*\.ya?ml" (baseNameOf path) != null && type == "regular")
apiPath;
};

devShells = forAllSystems (system:
Expand Down
1 change: 1 addition & 0 deletions result

0 comments on commit 95ffaca

Please sign in to comment.