blob: 2666c7b10613a8189278e88d9549c621441dfdbc [file] [log] [blame]
Minos Galanakis2c824b42025-03-20 09:28:45 +00001"""Add the consuming repository's scripts to the module search path.
2
3Usage:
4
5 import project_scripts # pylint: disable=unused-import
6"""
7
8# Copyright The Mbed TLS Contributors
9# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
10#
11
12import os
13import sys
14
15sys.path.append(os.path.join(os.path.dirname(__file__),
16 os.path.pardir, os.path.pardir,
17 'scripts'))