From 5b99014e130f14721b01903b22421b844186caad Mon Sep 17 00:00:00 2001 From: Mac Malainey Date: Mon, 18 Nov 2024 22:09:15 -0700 Subject: [PATCH] Add zos support to storage/azblob (#23729) --- sdk/storage/azblob/internal/shared/mmf_unix.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/storage/azblob/internal/shared/mmf_unix.go b/sdk/storage/azblob/internal/shared/mmf_unix.go index cdcadf3116..072fd27b1d 100644 --- a/sdk/storage/azblob/internal/shared/mmf_unix.go +++ b/sdk/storage/azblob/internal/shared/mmf_unix.go @@ -1,6 +1,6 @@ -//go:build go1.18 && (linux || darwin || dragonfly || freebsd || openbsd || netbsd || solaris || aix) +//go:build go1.18 && (linux || darwin || dragonfly || freebsd || openbsd || netbsd || solaris || aix || zos) // +build go1.18 -// +build linux darwin dragonfly freebsd openbsd netbsd solaris aix +// +build linux darwin dragonfly freebsd openbsd netbsd solaris aix zos // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information.