Skip to content

Commit

Permalink
Add quotes around echo statements
Browse files Browse the repository at this point in the history
  • Loading branch information
KRMisha committed Apr 12, 2021
1 parent 550c9ec commit 3af43b0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@
# with Docker Compose. See https://github.com/mviereck/x11docker/issues/227

function exit_handler() {
echo Cleaning up x11docker
echo "Cleaning up x11docker"
x11docker --cleanup --quiet
}

trap exit_handler EXIT

echo Initializing x11docker
echo "Initializing x11docker"
read x_env < <(x11docker --hostdisplay --showenv --quiet)
echo $x_env
export $x_env

echo Running Docker Compose
echo "Running Docker Compose"
docker-compose -f docker-compose.yml -f docker-compose.argos.yml up

# TODO: Arguments

0 comments on commit 3af43b0

Please sign in to comment.