We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b27f3f8 commit 9c330d5Copy full SHA for 9c330d5
1 file changed
Runbooks/Common_0000__Write-CsvOutput.ps1
@@ -1,5 +1,5 @@
1
<#PSScriptInfo
2
-.VERSION 1.0.0
+.VERSION 1.0.1
3
.GUID 7086a21d-f021-4f05-99a7-ec2a6de6f749
4
.AUTHOR Julian Pawlowski
5
.COMPANYNAME Workoho GmbH
@@ -12,8 +12,8 @@
12
.REQUIREDSCRIPTS
13
.EXTERNALSCRIPTDEPENDENCIES
14
.RELEASENOTES
15
- Version 1.0.0 (2024-05-30)
16
- - Initial release.
+ Version 1.0.1 (2024-06-04)
+ - Remove SAS token from output when uploading to Azure Storage
17
#>
18
19
<#
@@ -182,7 +182,7 @@ try {
182
throw "Invalid storage type '$storageType'. The storage type must be 'blob' or 'file."
183
}
184
185
- Write-Output "CSV file uploaded to $StorageUri"
+ Write-Output "CSV file uploaded to $($uri.GetLeftPart([System.UriPartial]::Path))"
186
187
else {
188
Write-Output $(
0 commit comments