From 70702b0cc4be7d0bdefd0de0729fc6b102ea2d54 Mon Sep 17 00:00:00 2001 From: Enzo Le Van Date: Mon, 9 Sep 2024 10:41:16 +0200 Subject: [PATCH] repair links for main push --- README.md | 24 ++++++++++++------------ install.ps1 | 6 +++--- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index e8921c52..53743788 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ #

- +

@@ -34,9 +34,9 @@ An extremely fast and simple **dataflow oriented robotic** framework to manage y

- - - + + +

@@ -47,8 +47,8 @@ An extremely fast and simple **dataflow oriented robotic** framework to manage y ## Highlights - 🚀 A single CLI to launch your Python and Rust robotic projects. -- ⚡️ [10-17x faster](https://github.com/dora-rs/dora-benchmark/README.md) than `ros2`. -- 🐍 Easy and Fast prototyping with a clean [Python API](https://www.dora-rs.ai/docs/api/python-api). +- ⚡️ [10-17x faster](https://github.com/dora-rs/dora-benchmark) than `ros2`. +- 🐍 Easy and Fast prototyping with a clean [Python API](https://www.dora-rs.ai/docs/python-api.html). - 🖥️ Supports macOS, Linux, and Windows. - ⏬ Installable without Rust via `curl` or `powershell`. - ❇️ Includes a large set of pre-packaged nodes for fast prototyping. @@ -133,9 +133,9 @@ The dataflow paradigm has the advantage of creating an abstraction layer that ma

- - - + + +

@@ -209,9 +209,9 @@ See:[examples/python-operator-dataflow](examples/python-operator-dataflow)

- - - + + +

diff --git a/install.ps1 b/install.ps1 index c432f848..59058a44 100644 --- a/install.ps1 +++ b/install.ps1 @@ -125,7 +125,7 @@ function Add-PathToEnv { $currentPath = [System.Environment]::GetEnvironmentVariable("PATH", [System.EnvironmentVariableTarget]::User) if ($currentPath -like "*$newPath*") { - Write-Host "`$newPath` is already in the PATH variable." + Write-Host "$newPath is already in the PATH variable." } else { $updatedPath = "$currentPath;$newPath" @@ -140,11 +140,11 @@ function Confirm-AddToPath { [string]$newPath ) - $response = Read-Host "Do you want to add `$newPath` to your PATH automatically? (y/n): " + $response = Read-Host "Do you want to add $newPath to your PATH automatically? (y/n): " if ($response -eq "Y" -or $response -eq "y" -or $response -eq "") { Add-PathToEnv -newPath $newPath } else { - Write-Host "You chose not to add `$newPath` to your PATH." + Write-Host "You chose not to add $newPath to your PATH." Write-Host "To run dora CLI without adding to PATH, use: '~/.dora/bin/dora'" } }