mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
16 lines
243 B
Bash
Executable file
16 lines
243 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e -o pipefail
|
|
|
|
|
|
echo "Shutting down Sauce Connect tunnel"
|
|
|
|
killall sc
|
|
|
|
while [[ -n `ps -ef | grep "sauce-connect-" | grep -v "grep"` ]]; do
|
|
printf "."
|
|
sleep .5
|
|
done
|
|
|
|
echo ""
|
|
echo "Sauce Connect tunnel has been shut down"
|