systemd fix
Some checks are pending
CI Pipeline / Run Tests (push) Waiting to run
CI Pipeline / Lint Code (push) Waiting to run
CI Pipeline / Security Scan (push) Waiting to run
CI Pipeline / E2E Tests (push) Blocked by required conditions

This commit is contained in:
Enki 2025-08-27 13:38:47 -07:00
parent 963966ee0c
commit e647aea2cb

View File

@ -49,6 +49,18 @@ done
cd "$PROJECT_ROOT"
# Debug: print current directory and check if cmd/gateway exists
echo "DEBUG: Current directory: $(pwd)"
echo "DEBUG: Contents of current directory:"
ls -la | head -10
if [ -d "cmd/gateway" ]; then
echo "DEBUG: cmd/gateway directory exists"
else
echo "DEBUG: cmd/gateway directory does NOT exist"
echo "DEBUG: Looking for cmd directory:"
find . -name "cmd" -type d 2>/dev/null | head -5
fi
# Install dependencies
echo "📦 Installing system dependencies..."
apt-get update