#!/bin/bash
# Залить страницу-композицию и инструменты на ПК (картинки уже там, шрифты и js каждый раз).
set -e
cd "$(dirname "$0")/.."
K=~/.ssh/kai_to_pc; PC=PKSTUDIO@100.67.6.5; D="E:/PKSTUDIO/clients/pk_motion"
ssh -i $K $PC "powershell -NoProfile -Command \"New-Item -ItemType Directory -Force -Path E:\PKSTUDIO\clients\pk_motion\web\fonts,E:\PKSTUDIO\clients\pk_motion\audio\ | Out-Null\"" 
scp -i $K -q web/*.js web/index.html $PC:"$D/web/"
scp -i $K -q web/fonts/* $PC:"$D/web/fonts/"
scp -i $K -q tools/*.mjs tools/*.py $PC:"$D/tools/" 2>/dev/null || true
scp -i $K -q audio/music_*.mp3 $PC:"$D/audio/"
echo pushed
