From f941e1314031c7e730532e4cbe34b296a751e823 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Tue, 28 Feb 2023 08:36:09 -0800 Subject: [PATCH] Use 0o644 for files, not 0o664 (#278) (.nix-channels was the last remaining user of the 0o664 typo) --- src/action/common/place_channel_configuration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/action/common/place_channel_configuration.rs b/src/action/common/place_channel_configuration.rs index 5805f1c0e..9084f4d43 100644 --- a/src/action/common/place_channel_configuration.rs +++ b/src/action/common/place_channel_configuration.rs @@ -32,7 +32,7 @@ impl PlaceChannelConfiguration { .join(".nix-channels"), None, None, - 0o0664, + 0o0644, buf, force, )