Skip to content

Commit ef7b17b

Browse files
committed
On Windows 10 install 64-bit Python 2.7.14
1 parent 3a1d725 commit ef7b17b

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

prerequisites/download-prerequisites.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
[Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls"
12
$storageDir = $pwd
23
$webclient = New-Object System.Net.WebClient
34
#Download gcc-arm-none-eabi
@@ -25,6 +26,6 @@ $url = "https://developer.mbed.org/media/downloads/drivers/mbedWinSerial_16466.e
2526
$file = "$storageDir\mbedWinSerial_16466.exe"
2627
$webclient.DownloadFile($url,$file)
2728
#Download mbed-cli
28-
$url = "https://www.github.com/ARMmbed/mbed-cli/archive/1.9.0.zip"
29-
$file = "$storageDir\mbed-cli-1.9.0.zip"
29+
$url = "https://www.github.com/ARMmbed/mbed-cli/archive/1.10.0.zip"
30+
$file = "$storageDir\mbed-cli-1.10.0.zip"
3031
$webclient.DownloadFile($url,$file)

source/install.nsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ ${StrTrimNewLines}
4949
;Config Section
5050
!define PRODUCT_NAME "Mbed CLI for Windows"
5151
!define PRODUCT_VERSION "0.4.10"
52-
!define MBED_CLI_ZIP "mbed-cli-1.9.0.zip"
53-
!define MBED_CLI_VERSION "mbed-cli-1.9.0"
52+
!define MBED_CLI_ZIP "mbed-cli-1.10.0.zip"
53+
!define MBED_CLI_VERSION "mbed-cli-1.10.0"
5454
!define MBED_CLI_ENV "MBED_CLI_TOOLS"
5555
!define PRODUCT_PUBLISHER "Arm Mbed"
56-
!define PYTHON_INSTALLER "python-2.7.14.msi"
56+
!define PYTHON_INSTALLER "python-2.7.14.amd64.msi"
5757
!define GCC_EXE "gcc-arm-none-eabi-6-2017-q2-update-win32.exe"
5858
!define GIT_INSTALLER "Git-2.17.1.2-32-bit.exe"
5959
!define MERCURIAL_INSTALLER "Mercurial-4.1.1.exe"

0 commit comments

Comments
 (0)