mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
home-manager: avoid stray error message
Failure to create the global profiles directory is not actually an error since we can recover. Therefore, avoid printing the mkdir error message.
This commit is contained in:
@@ -42,7 +42,7 @@ function setupVars() {
|
||||
# In the future we may perform a one-shot migration to the new location.
|
||||
#
|
||||
# shellcheck disable=2174
|
||||
if [[ -d "$globalProfilesDir" ]] || mkdir -m 0755 -p "$globalProfilesDir"; then
|
||||
if [[ -d "$globalProfilesDir" ]] || mkdir -m 0755 -p "$globalProfilesDir" 2>/dev/null; then
|
||||
declare -r hmProfilesDir="$globalProfilesDir"
|
||||
else
|
||||
declare -r hmProfilesDir="$hmStateDir/profiles"
|
||||
|
||||
Reference in New Issue
Block a user