Skip to content

Commit

Permalink
Fix issue with unexpected operator (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
klaasnicolaas authored Jul 22, 2024
1 parent ae504ac commit 736cdb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Follow the steps below to install the Stream Overlays plugin for RotorHazard.

1. Install the **Stream Overlays** RotorHazard plugin, by running the following command in your terminal at the device where RotorHazard is installed:
``` bash
sh -c "$(curl -fsSL https://short.dutchdronesquad.nl/install-overlays-plugin)"
bash -c "$(curl -fsSL https://short.dutchdronesquad.nl/install-overlays-plugin)"
```

2. Choose for **stable** or **development** version and press enter.
Expand Down
4 changes: 2 additions & 2 deletions tools/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ handle_plugin_choice() {
fi

# Install or update based on plugin type
if [ "$plugin_type" == "stable" ]; then
if [ "$plugin_type" = "stable" ]; then
install_or_update_plugin
elif [ "$plugin_type" == "development" ]; then
elif [ "$plugin_type" = "development" ]; then
install_development_plugin
fi
}
Expand Down

0 comments on commit 736cdb2

Please sign in to comment.