18 lines
346 B
Bash
18 lines
346 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
SESSION_NAME="${SESSION_NAME:-social-dev}"
|
||
|
|
|
||
|
|
echo "=== App Down ==="
|
||
|
|
|
||
|
|
if ! tmux has-session -t "$SESSION_NAME" 2>/dev/null; then
|
||
|
|
echo "No tmux session '$SESSION_NAME' found."
|
||
|
|
exit 0
|
||
|
|
fi
|
||
|
|
|
||
|
|
echo "Stopping tmux session '$SESSION_NAME'..."
|
||
|
|
|
||
|
|
tmux kill-session -t "$SESSION_NAME"
|
||
|
|
|
||
|
|
echo "Session stopped and cleaned up."
|