@@ -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
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'"
}
}