docker-start-cirrus-with-turn.sh 304 B

12345678910111213141516
  1. #!/bin/bash
  2. # Copyright Epic Games, Inc. All Rights Reserved.
  3. # Suppress printing of directory stack
  4. pushd () {
  5. command pushd "$@" > /dev/null
  6. }
  7. popd () {
  8. command popd "$@" > /dev/null
  9. }
  10. # Stop both stun and turn
  11. pushd "$(dirname ${BASH_SOURCE[0]})"
  12. ./docker-start-cirrus.sh --with-turn &
  13. popd