Skip to content

Commit

Permalink
chore: update doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
qarlosalberto committed Jul 29, 2023
1 parent aa33d57 commit 172e975
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/teroshdl/src/features/tree_views/project/manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export class Project_manager {
// Check python
const python_result = await teroshdl2.process.python.get_python_path(options)
if (python_result.successful === false){
const doc_msg_link = "https://terostechnology.github.io/terosHDLdoc/docs/getting_started/installation#python3-package-dependencies"
const doc_msg_link = "https://terostechnology.github.io/terosHDLdoc/docs/getting_started/installation#2-python3"
const doc_msg = this.get_doc_msg(doc_msg_link);

this.global_logger.error(`${intro_error}Python not found. If you are using system path try setting the complete Python path. ${doc_msg}`);
Expand All @@ -220,7 +220,7 @@ export class Project_manager {
const package_result = await teroshdl2.process.python.check_python_package(python_result.python_path,
package_name);
if (!package_result){
const doc_msg_link = "https://terostechnology.github.io/terosHDLdoc/docs/getting_started/installation#python3-package-dependencies"
const doc_msg_link = "https://terostechnology.github.io/terosHDLdoc/docs/getting_started/installation#3-python3-package-dependencies"
const doc_msg = this.get_doc_msg(doc_msg_link);

if (package_list_optional.includes(package_name)){
Expand All @@ -247,7 +247,7 @@ export class Project_manager {
const proc = new teroshdl2.process.process.Process();
const make_result = await proc.exec_wait(`${make_binary_path} --version`);
if (!make_result.successful){
const doc_msg_link = "https://terostechnology.github.io/terosHDLdoc/docs/getting_started/installation#make"
const doc_msg_link = "https://terostechnology.github.io/terosHDLdoc/docs/getting_started/installation#4-make"
const doc_msg = this.get_doc_msg(doc_msg_link);
this.global_logger.error(`${intro_error}Make not found in path: ${make_binary_path}. Check that the path is correct. ${doc_msg}`);
this.global_logger.error(make_result.stderr);
Expand Down

0 comments on commit 172e975

Please sign in to comment.