home-manager: refuse build if CWD is read-only
This produces a clearer error message than produced by Nix. Fixes #116.
This commit is contained in:
parent
b4f5b5556f
commit
14083a0857
|
@ -113,6 +113,11 @@ function presentNews() {
|
|||
}
|
||||
|
||||
function doBuild() {
|
||||
if [[ ! -w . ]]; then
|
||||
errorEcho "Cannot run build in read-only directory";
|
||||
return 1
|
||||
fi
|
||||
|
||||
local newsInfo
|
||||
newsInfo=$(buildNews)
|
||||
|
||||
|
|
Loading…
Reference in a new issue