Skip to content

Commit

Permalink
Debug local
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Oct 8, 2024
1 parent 3d15db1 commit 4895b68
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion nix/dna.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ let
" ${json2yaml}/bin/json2yaml ${dnaManifestJson} $out\n"; # Recurse over the zomes, and add the correct bundled zome package by name

# Debug package
debug = runCommandNoCC "${manifest.name}-debug" {
debug = runCommandLocal "${manifest.name}-debug" {
srcs = builtins.map (zome: zome.meta.debug) zomeSrcs;
} ''
mkdir workdir
Expand Down
66 changes: 33 additions & 33 deletions nix/fixtures/module-repo/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nix/happ.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ let
happManifestYaml = runCommandLocal "json-to-yaml" { }
" ${json2yaml}/bin/json2yaml ${happManifestJson} $out\n";

debug = runCommandNoCC "${manifest.name}-debug" {
debug = runCommandLocal "${manifest.name}-debug" {
srcs = builtins.map (dna: dna.meta.debug) dnaSrcs;
} ''
mkdir workdir
Expand Down
2 changes: 1 addition & 1 deletion nix/zome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ let
in runCommandLocal "${crate}-deterministic" { }
" cp ${wasm}/lib/${crate}.wasm $out \n";

debug = runCommandNoCC "${crate}-debug" { } ''
debug = runCommandLocal "${crate}-debug" { } ''
cp ${wasm}/lib/${crate}.wasm $out
'';

Expand Down

0 comments on commit 4895b68

Please sign in to comment.