You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Identifies shared library dependencies of `package_dir` and copies them to `output_dir`.
107
102
108
103
:param output_dir: Path to output_dir
109
104
:param package_dir: Path to package_dir
110
-
:param logger: Logger to log errors
111
105
112
106
:since: TODO
113
107
"""
114
108
115
109
ifnotpackage_dir:
116
110
package_dir=_get_default_package_dir()
117
111
ifnotpackage_dir:
118
-
logger.error(
119
-
f"Error: Couldn't identify a default python package directory. Please specifiy one using the --package-dir option. Use -h for more information."
120
-
)
121
-
exit(1)
112
+
raiseRuntimeError(f"Error: Couldn't identify a default python package directory. Please specifiy one using the --package-dir option. Use -h for more information.")
0 commit comments