1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 09:58:32 +02:00

home-manager: remove the export of run

Fixes #4950
This commit is contained in:
Robert Helgesson 2024-01-28 10:47:33 +01:00
parent ebba24a6fe
commit 4d54c29bce
No known key found for this signature in database
GPG Key ID: 96E745BD17AA17ED
2 changed files with 6 additions and 5 deletions

View File

@ -101,9 +101,6 @@ function _iVerbose() {
# #
# If given the command line option `--silence`, then the command's standard and # If given the command line option `--silence`, then the command's standard and
# error output is sent to `/dev/null` on a live run. # error output is sent to `/dev/null` on a live run.
#
# Note, the run function is exported. I.e., it is available also to called Bash
# script.
function run() { function run() {
if [[ $1 == '--silence' ]]; then if [[ $1 == '--silence' ]]; then
local silence=1 local silence=1
@ -118,4 +115,3 @@ function run() {
"$@" "$@"
fi fi
} }
export -f run

View File

@ -110,5 +110,10 @@ function systemdPostReload() {
oldGenPath="$1" oldGenPath="$1"
newGenPath="$2" newGenPath="$2"
run systemctl --user daemon-reload if [[ -v DRY_RUN ]]; then
echo systemctl --user daemon-reload
else
systemctl --user daemon-reload
fi
systemdPostReload systemdPostReload