8 lines
107 B
Bash
8 lines
107 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e -o pipefail
|
||
|
|
||
|
|
||
|
echo "Shutting down Browserstack tunnel"
|
||
|
echo "TODO: implement me"
|
||
|
exit 1
|