16 lines
304 B
Bash
16 lines
304 B
Bash
#!/bin/bash
|
|
# Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
# Suppress printing of directory stack
|
|
pushd () {
|
|
command pushd "$@" > /dev/null
|
|
}
|
|
popd () {
|
|
command popd "$@" > /dev/null
|
|
}
|
|
|
|
# Stop both stun and turn
|
|
pushd "$(dirname ${BASH_SOURCE[0]})"
|
|
./docker-start-cirrus.sh --with-turn &
|
|
popd
|