restore path for place that needed path over string
Some checks failed
/ check-pre-commit (pull_request) Successful in 13s
/ check-peertube (pull_request) Successful in 18s
/ check-panel (pull_request) Successful in 1m7s
/ check-deployment-basic (pull_request) Successful in 29m39s
/ check-deployment-cli (pull_request) Failing after 29m37s
Some checks failed
/ check-pre-commit (pull_request) Successful in 13s
/ check-peertube (pull_request) Successful in 18s
/ check-panel (pull_request) Successful in 1m7s
/ check-deployment-basic (pull_request) Successful in 29m39s
/ check-deployment-cli (pull_request) Failing after 29m37s
This commit is contained in:
parent
196d4e1540
commit
0930a8b75b
4 changed files with 4 additions and 18 deletions
|
@ -18,10 +18,7 @@ let
|
|||
};
|
||||
}).run
|
||||
{
|
||||
src = builtins.path {
|
||||
path = ./.;
|
||||
name = "root";
|
||||
};
|
||||
src = ./.;
|
||||
hooks =
|
||||
let
|
||||
## Add a directory here if pre-commit hooks shouldn't apply to it.
|
||||
|
|
|
@ -13,10 +13,7 @@ let
|
|||
"cowsay"
|
||||
];
|
||||
pathToRoot = /. + (builtins.unsafeDiscardStringContext self);
|
||||
pathFromRoot = builtins.path {
|
||||
path = ./.;
|
||||
name = "basic";
|
||||
};
|
||||
pathFromRoot = ./.;
|
||||
|
||||
in
|
||||
{
|
||||
|
|
|
@ -15,10 +15,7 @@ let
|
|||
"pixelfed"
|
||||
];
|
||||
pathToRoot = /. + (builtins.unsafeDiscardStringContext self);
|
||||
pathFromRoot = builtins.path {
|
||||
path = ./.;
|
||||
name = "cli";
|
||||
};
|
||||
pathFromRoot = ./.;
|
||||
enableAcme = true;
|
||||
|
||||
in
|
||||
|
|
|
@ -12,12 +12,7 @@ let
|
|||
with lib.fileset;
|
||||
toSource {
|
||||
root = ../src;
|
||||
fileset = intersection (gitTracked (
|
||||
builtins.path {
|
||||
path = ../../.;
|
||||
name = "root";
|
||||
}
|
||||
)) ../src;
|
||||
fileset = intersection (gitTracked ../../.) ../src;
|
||||
};
|
||||
pyproject = fromTOML pyproject-toml;
|
||||
# TODO: define this globally
|
||||
|
|
Loading…
Add table
Reference in a new issue