mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
systemd: fix quoting in glob pattern
This commit is contained in:
parent
dd0e71d686
commit
8a196bb62b
1 changed files with 2 additions and 2 deletions
|
@ -79,8 +79,8 @@ in
|
|||
--new-line-format='+%L' \
|
||||
--old-line-format='-%L' \
|
||||
--unchanged-line-format=' %L' \
|
||||
<(basename -a $(echo "$oldUserServicePath/*.service") | sort) \
|
||||
<(basename -a $(echo "$newUserServicePath/*.service") | sort) \
|
||||
<(basename -a $(echo "$oldUserServicePath/"*.service) | sort) \
|
||||
<(basename -a $(echo "$newUserServicePath/"*.service) | sort) \
|
||||
> $servicesDiffFile
|
||||
|
||||
local -a maybeRestart=( $(grep '^ ' $servicesDiffFile | cut -c2-) )
|
||||
|
|
Loading…
Reference in a new issue