mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
Merge pull request #10916 from jmbaur/read-only-no-chown
Don't chown when local-store is read-only
This commit is contained in:
commit
e48abec567
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ LocalStore::LocalStore(const Params & params)
|
|||
struct group * gr = getgrnam(settings.buildUsersGroup.get().c_str());
|
||||
if (!gr)
|
||||
printError("warning: the group '%1%' specified in 'build-users-group' does not exist", settings.buildUsersGroup);
|
||||
else {
|
||||
else if (!readOnly) {
|
||||
struct stat st;
|
||||
if (stat(realStoreDir.get().c_str(), &st))
|
||||
throw SysError("getting attributes of path '%1%'", realStoreDir);
|
||||
|
|
Loading…
Reference in a new issue