Skip to content

Commit e7f9c22

Browse files
committed
XXX Update with hash and author from Vikas
1 parent 56be8e2 commit e7f9c22

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tools/targets/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@
2222
import shutil
2323
import inspect
2424
import sys
25+
26+
# Add PSA utility scripts on system path
27+
from os.path import dirname, abspath, join
28+
THIS_DIR = dirname(__file__)
29+
CODE_DIR = abspath(join(THIS_DIR, '..', 'psa', 'tfm', 'bin_utils'))
30+
sys.path.insert(0, CODE_DIR)
31+
2532
from collections import namedtuple
2633
from copy import copy
2734
from future.utils import raise_from

0 commit comments

Comments
 (0)