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
1 changed files with 9 additions and 0 deletions

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@" \