mirror of
https://github.com/nix-community/home-manager
synced 2024-11-15 23:59:45 +01:00
home-manager: minor Bash code fixes
This commit is contained in:
parent
43fd747ba7
commit
37831674e2
1 changed files with 2 additions and 1 deletions
|
@ -51,7 +51,7 @@ function doHelp() {
|
||||||
echo " packages List all packages installed in home-manager-path"
|
echo " packages List all packages installed in home-manager-path"
|
||||||
}
|
}
|
||||||
|
|
||||||
case $1 in
|
case "$1" in
|
||||||
rebuild)
|
rebuild)
|
||||||
doRebuild "$2"
|
doRebuild "$2"
|
||||||
;;
|
;;
|
||||||
|
@ -68,4 +68,5 @@ case $1 in
|
||||||
echo "Unknown command: $1"
|
echo "Unknown command: $1"
|
||||||
doHelp
|
doHelp
|
||||||
exit 1
|
exit 1
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue