You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
17 lines
311 B
Bash
17 lines
311 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-stop-cirrus.sh
|
||
|
|
./docker-stop-turn.sh
|
||
|
|
popd
|