mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00: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"
|
||||
}
|
||||
|
||||
case $1 in
|
||||
case "$1" in
|
||||
rebuild)
|
||||
doRebuild "$2"
|
||||
;;
|
||||
|
@ -68,4 +68,5 @@ case $1 in
|
|||
echo "Unknown command: $1"
|
||||
doHelp
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue