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