Skip to content

Commit 695143c

Browse files
committed
[Telink] set correct order for set env
1 parent 241d80d commit 695143c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/tools/telink/process_binaries.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@
2020
import subprocess
2121
import sys
2222

23+
ZEPHYR_BASE = os.environ.get('ZEPHYR_BASE')
24+
if ZEPHYR_BASE is None:
25+
raise EnvironmentError("ZEPHYR_BASE environment variable is not set")
26+
2327
try:
2428
from core import BuildConfiguration
2529
except ImportError:
2630
sys.path.append(os.path.abspath(os.path.join(ZEPHYR_BASE, 'scripts/west_commands/runners')))
2731
from core import BuildConfiguration
2832

29-
ZEPHYR_BASE = os.environ.get('ZEPHYR_BASE')
30-
if ZEPHYR_BASE is None:
31-
raise EnvironmentError("ZEPHYR_BASE environment variable is not set")
32-
3333
def merge_binaries(input_file1, input_file2, output_file, offset):
3434
with open(output_file, 'r+b' if os.path.exists(output_file) else 'wb') as outfile:
3535
# Merge input_file1 at offset 0

0 commit comments

Comments
 (0)