Skip to content

Commit 1126605

Browse files
committed
refactor: create robotcode bundled interface
1 parent bf4def7 commit 1126605

File tree

5 files changed

+2
-2
lines changed

5 files changed

+2
-2
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

bundled/tool/check_robot_version.py renamed to bundled/tool/utils/check_robot_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def update_sys_path(path_to_add: str, strategy: str) -> None:
1818

1919
if __name__ == "__main__":
2020
update_sys_path(
21-
os.fspath(pathlib.Path(__file__).parent.parent / "libs"),
21+
os.fspath(pathlib.Path(__file__).parent.parent.parent / "libs"),
2222
os.getenv("LS_IMPORT_STRATEGY", "useBundled"),
2323
)
2424

vscode-client/pythonmanger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export class PythonManager {
100100
);
101101

102102
this._checkRobotVersionMain = this.extensionContext.asAbsolutePath(
103-
path.join("bundled", "tool", "check_robot_version.py")
103+
path.join("bundled", "tool", "utils", "check_robot_version.py")
104104
);
105105
}
106106

0 commit comments

Comments
 (0)