Skip to content

Commit b5715b3

Browse files
committed
update to 1.7.1; undo run_container changes
1 parent 28aacde commit b5715b3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

m365/image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2022
22
SHELL ["powershell"]
33

44

5-
ARG SCUBAGEAR_VERSION=1.7.0
5+
ARG SCUBAGEAR_VERSION=1.7.1
66
ARG OPA_VERSION=1.9.0
77
# Get static URL for current version: curl -s -D- https://aka.ms/downloadazcopy-v10-windows | grep ^Location
88
# https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10?tabs=dnf#obtain-a-static-download-link

m365/image/run_container.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ Foreach ($tenantConfig in $(Get-ChildItem 'input\')) {
7272
try {
7373
$org = $tenantConfig.BaseName.split("_")[0]
7474
Write-Output "Running ScubaGear for $($tenantConfig.BaseName)"
75-
New-Item -Path ".\reports\$($org)" -ItemType Directory -Force
75+
7676
$params = @{
7777
CertificateThumbPrint = $CertificateThumbPrint;
7878
AppID = if ($null -ne $Env:SECONDARY_APP_ID -and $org.EndsWith($Env:SECONDARY_APP_TLD)) {$Env:SECONDARY_APP_ID} else {$Env:APP_ID};
7979
Organization = $org;
80-
OutPath = "./reports/$($org)"; # ScubaGear 1.7.0 requires forward slashes
80+
OutPath = ".\reports\$($org)"; # The folder path where the output will be stored
8181
OPAPath = "."
8282
ConfigFilePath = $tenantConfig.FullName
8383
Quiet = $true;

0 commit comments

Comments
 (0)