Skip to content

Commit 25aad69

Browse files
[nrf noup] Fixed package names for zap binaries
The URLs for the ZAP tool binaries changed, so script for downloading it had to be aligned. Signed-off-by: Kamil Kasperczyk <kamil.kasperczyk@nordicsemi.no>
1 parent 379d041 commit 25aad69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/setup/nrfconnect/get_zap.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,15 @@ def print_paths_warning(paths_to_print):
147147
def install_zap_package(version, location, overwrite):
148148
current_os = platform.system()
149149
if current_os == 'Linux':
150-
package = 'zap-linux'
150+
package = 'zap-linux-x64'
151151
zap_executable = 'zap'
152152
zap_cli_executable = 'zap-cli'
153153
elif current_os == 'Windows':
154-
package = 'zap-win'
154+
package = 'zap-win-x64'
155155
zap_executable = 'zap.exe'
156156
zap_cli_executable = 'zap-cli.exe'
157157
elif current_os == 'Darwin':
158-
package = 'zap-mac'
158+
package = 'zap-mac-x64'
159159
zap_executable = 'zap.app/Contents/MacOS/zap'
160160
zap_cli_executable = 'zap-cli'
161161
else:

0 commit comments

Comments
 (0)