diff options
| author | Damien George <damien@micropython.org> | 2022-08-11 12:40:23 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-08-11 13:34:34 +1000 |
| commit | d53c3b6ade01650f88972ccf7e3002d2b5a84ff6 (patch) | |
| tree | 9fce812fa31258da30e982f09388fa20450835e6 /tools/metrics.py | |
| parent | c7aa6a2c73854af9c0e9561e9213ef20abccf246 (diff) | |
unix/variants: Remove variant suffix from executable filename.
The executable now lives in the build directory, and since the build
directory already contains the variant name there is no need to also add
it to the executable.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tools/metrics.py')
| -rwxr-xr-x | tools/metrics.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/metrics.py b/tools/metrics.py index c79b998e1..da4d18856 100755 --- a/tools/metrics.py +++ b/tools/metrics.py @@ -60,8 +60,8 @@ class PortData: port_data = { "b": PortData("bare-arm", "bare-arm", "build/firmware.elf"), "m": PortData("minimal x86", "minimal", "build/firmware.elf"), - "u": PortData("unix x64", "unix", "micropython"), - "n": PortData("unix nanbox", "unix", "micropython-nanbox", "VARIANT=nanbox"), + "u": PortData("unix x64", "unix", "build-standard/micropython"), + "n": PortData("unix nanbox", "unix", "build-nanbox/micropython", "VARIANT=nanbox"), "s": PortData("stm32", "stm32", "build-PYBV10/firmware.elf", "BOARD=PYBV10"), "c": PortData("cc3200", "cc3200", "build/WIPY/release/application.axf", "BTARGET=application"), "8": PortData("esp8266", "esp8266", "build-GENERIC/firmware.elf"), |
