Skip to content

Commit

Permalink
cmm: Modularize by isolating tool
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <nick@nickspinale.com>
  • Loading branch information
nspin committed Nov 7, 2023
1 parent 00a199c commit 5069421
Show file tree
Hide file tree
Showing 23 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .reuse/dep5
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Source: http://sel4.systems
Files:
Cargo.lock
support/*.json
hacking/cargo-manifest-management/Cargo.lock
hacking/cargo-manifest-management/tool/Cargo.lock
hacking/nix/scope/capdl-tool/capDL-tool.nix
hacking/nix/scope/capdl-tool/base-compat-0-11-2.nix
hacking/nix/scope/capdl-tool/base-compat-batteries-0-11-2.nix
Expand Down
1 change: 0 additions & 1 deletion hacking/cargo-manifest-management/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@
# SPDX-License-Identifier: BSD-2-Clause
#

/target/
blueprint.json
2 changes: 1 addition & 1 deletion hacking/cargo-manifest-management/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

blueprint := blueprint.json

run := cargo run -p manage-cargo-manifests --
run := cargo run --manifest-path=tool/Cargo.toml -p manage-cargo-manifests --

.PHONY: none
none:
Expand Down
2 changes: 1 addition & 1 deletion hacking/cargo-manifest-management/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ rec {

inherit (pkgs) lib;

makeBlueprint = import ./make-blueprint.nix {
makeBlueprint = import ./tool/make-blueprint.nix {
inherit lib;
};

Expand Down
7 changes: 7 additions & 0 deletions hacking/cargo-manifest-management/tool/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#
# Copyright 2023, Colias Group, LLC
#
# SPDX-License-Identifier: BSD-2-Clause
#

/target/

0 comments on commit 5069421

Please sign in to comment.