15 lines
357 B
Bash
Executable File
15 lines
357 B
Bash
Executable File
#!/bin/bash
|
|
# Deploy + native-node-binäärien käännös (jos muutoksia)
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
echo "=== Kipinä Studio Deploy (+ native binäärit) ==="
|
|
|
|
# 1. Käännetään native-node-binäärit (ohittaa automaattisesti jos ei muutoksia)
|
|
./build-binaries.sh
|
|
|
|
# 2. Ajetaan normaali deploy
|
|
exec ./deploy.sh
|