You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Azure/Copy-ToAzureDevelopmentStorage/Copy-ToAzureDevelopmentStorage.psm1
+4-4
Original file line number
Diff line number
Diff line change
@@ -18,15 +18,15 @@ function Copy-ToAzureDevelopmentStorage
18
18
[OutputType([int])]
19
19
Param
20
20
(
21
-
[Parameter(Mandatory=$true,HelpMessage="The path to the folder to copy the content from to the Development Storage. The first level of subfolders will be handled as Storage Containers.")]
21
+
[Parameter(Mandatory=$true,HelpMessage='The path to the folder to copy the content from to the Development Storage. The first level of subfolders will be handled as Storage Containers.')]
22
22
[string] $Path
23
23
)
24
24
25
25
Process
26
26
{
27
27
if (!(Test-Path$Path))
28
28
{
29
-
throw ("The path specified is not valid!")
29
+
throw ('The path specified is not valid!')
30
30
}
31
31
32
32
Start-AzureStorageEmulator|Out-Null
@@ -38,14 +38,14 @@ function Copy-ToAzureDevelopmentStorage
0 commit comments