diff options
author | 2015-08-10 18:51:20 +0300 | |
---|---|---|
committer | 2015-08-10 18:51:20 +0300 | |
commit | 72432608f20e30ff6ba80022447824e0e9648e4f (patch) | |
tree | badf027432e022ecd8a30fcf6a0fad58c3b439b8 /wscript | |
parent | da40902ba17b68ee6d4337411b4387a414856a7f (diff) |
fixed reference bug
Diffstat (limited to 'wscript')
-rwxr-xr-x | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -125,7 +125,7 @@ def build_cp_docs (trex_src_dir, dest_dir = "_build", builder = "html"): src= ".", dst= dest_dir) ) - bld_path = os.path.abspath( os.path.join(trex_src_dir, 'automation', 'trex_control_plane', 'doc') ) + bld_path = os.path.abspath( os.path.join(trex_src_dir, 'scripts', 'automation', 'trex_control_plane', 'doc') ) ret_val = subprocess.call(build_doc_cmd, cwd = bld_path) if ret_val: raise RuntimeError("Build operation of control plain docs failed with return value {ret}".format(ret= ret_val)) |