Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/libstore/build/derivation-goal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ Goal::Co DerivationGoal::haveDerivation(bool storeDerivation)
}
if (buildMode == bmCheck && !allValid)
throw Error(
"some outputs of '%s' are not valid, so checking is not possible",
"some outputs of '%s' are not valid, so checking is not possible\n"
"Hint: --rebuild and --check error if the derivation was not previously built and cannot be substituted.\n"
" Remove it to perform a fresh build, or use --repair to rewrite missing or corrupted builds in the store.",
worker.store.printStorePath(drvPath));
}

Expand Down
Loading