Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Fix run_virtual_iridium script #53

Merged
merged 1 commit into from
Nov 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/run_virtual_iridium.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ WEBHOOK_SERVER_ENDPOINT=${1:-127.0.0.1:8081}
VIRTUAL_IRIDIUM_HTTP_SERVER_PORT=${2:-8080}

# Make sure everything is killed on exit
trap "exit" INT TERM
trap "kill 0" EXIT
trap 'exit' INT TERM
trap 'kill %; exit 0' EXIT

# Port environment variables are defined in $ROS_WORKSPACE/.devcontainer/base-dev/base-dev.Dockerfile
touch $LOCAL_TRANSCEIVER_TEST_PORT
Expand Down