File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Retrieves and extracts the CMSIS pack supported by NETMF from the official GitHu
8
8
Get-CMSIS
9
9
#>
10
10
11
- Import-Module .. \tools\scripts\Build-netmf .psm1
11
+ Import-Module .\tools\scripts\Build-netmf .psm1
12
12
13
13
# current officially supported version
14
14
$packVersion = " 4.3.0"
@@ -20,4 +20,5 @@ $packFileName = "ARM.CMSIS.$packVersion.pack"
20
20
$packSourceURLBase = " https://github.com/ARM-software/CMSIS/releases/download/v$packVersion "
21
21
22
22
# download the pack and extract the files into the curent directory
23
- Invoke-WebRequest - Uri " $packSourceURLBase /$packFileName " | Expand-Stream
23
+ $dstPath = [System.IO.Path ]::Combine( $SPOCLIENT , " CMSIS" )
24
+ Invoke-WebRequest - Uri " $packSourceURLBase /$packFileName " | Expand-Stream - Destination $dstPath
You can’t perform that action at this time.
0 commit comments