Revert "Move brainstorm server metadata to .meta/ subdirectory"

This reverts commit ab500dade6.
This commit is contained in:
Jesse Vincent
2026-03-24 10:58:33 -07:00
parent 151cfb16a0
commit 9e6e077d33
6 changed files with 29 additions and 34 deletions

View File

@@ -13,8 +13,7 @@ if [[ -z "$SCREEN_DIR" ]]; then
exit 1
fi
META_DIR="${SCREEN_DIR}/.meta"
PID_FILE="${META_DIR}/.server.pid"
PID_FILE="${SCREEN_DIR}/.server.pid"
if [[ -f "$PID_FILE" ]]; then
pid=$(cat "$PID_FILE")
@@ -43,7 +42,7 @@ if [[ -f "$PID_FILE" ]]; then
exit 1
fi
rm -f "$PID_FILE" "${META_DIR}/.server.log"
rm -f "$PID_FILE" "${SCREEN_DIR}/.server.log"
# Only delete ephemeral /tmp directories
if [[ "$SCREEN_DIR" == /tmp/* ]]; then