1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Update path to python3 interpreter
Author: Nick Morrott <nickm@debian.org>
Forwarded: not-needed
Last-Update: 2021-02-07
---
--- a/mbed_test_wrapper/main.py
+++ b/mbed_test_wrapper/main.py
@@ -1,4 +1,5 @@
-#! /usr/bin/env python
+#!/usr/bin/python3
+
# Copyright 2015 ARM Limited
#
# Licensed under the Apache License, Version 2.0
@@ -109,7 +110,7 @@
(args.target, ', '.join([x['platform_name'] for x in mbeds]))
)
sys.exit(-1)
-
+
binfile_name = args.program + '.bin'
# convert the executable to a .bin file, which the mbed test runner needs,
# if we don't already have one:
|