1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 04:23:34 +02:00

home-manager: improve error checking a bit

This commit is contained in:
Robert Helgesson 2017-01-15 21:07:39 +01:00
parent ed81b6848e
commit e0fd58709c
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86

View File

@ -18,8 +18,17 @@ function doBuild() {
local confFile output
confFile="$(realpath "$1")"
if [[ $? -ne 0 ]]; then
exit 1
fi
output="$(realpath "$2")"
if [[ $? -ne 0 ]]; then
exit 1
fi
nix-build --show-trace \
"@HOME_MANAGER_EXPR_PATH@" \
--argstr modulesPath "@MODULES_PATH@" \