5 lines
148 B
Bash
5 lines
148 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Kill any existing SkyArtShop node processes before starting
|
||
|
|
pkill -f "node.*SkyArtShop/backend/server.js" 2>/dev/null || true
|
||
|
|
sleep 1
|