Skip to content

Commit

Permalink
fix typo (#117)
Browse files Browse the repository at this point in the history
Remove unnecessary backslash.
  • Loading branch information
shawaj authored Jul 5, 2024
1 parent d3e821b commit 5e68139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dump1090-fa/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ missing_variables=false

# Begin defining all the required configuration variables.

[ -z "$LAT" ] && \echo "Receiver latitude is missing, will abort startup." && missing_variables=true || echo "Receiver latitude is set: $LAT"
[ -z "$LAT" ] && echo "Receiver latitude is missing, will abort startup." && missing_variables=true || echo "Receiver latitude is set: $LAT"
[ -z "$LON" ] && echo "Receiver longitude is missing, will abort startup." && missing_variables=true || echo "Receiver longitude is set: $LON"

# End defining all the required configuration variables.
Expand Down

0 comments on commit 5e68139

Please sign in to comment.