1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-18 12:38:30 +02:00

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:
Robert Helgesson 2017-11-05 19:31:07 +01:00
parent b4f5b5556f
commit 14083a0857
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86

View File

@ -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)