//go:build !linux // SPDX-License-Identifier: AGPL-3.0-only package deploy import "errors" type fileLock struct{} func acquireLock(string) (*fileLock, error) { return nil, errors.New("deployment mutations require Linux") } func (*fileLock) Close() error { return nil }