1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-27 10:07:44 +00:00

feat: don't -q ssh

This commit is contained in:
RGBCube 2025-05-08 00:19:39 +03:00
parent 24eabcf2da
commit 4ebce41676
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -2,7 +2,7 @@
def --wrapped sync [...arguments] { def --wrapped sync [...arguments] {
(rsync (rsync
--rsh "ssh -q" --rsh "ssh"
--compress --compress
--delete --recursive --force --delete --recursive --force
--delete-excluded --delete-excluded
@ -22,14 +22,14 @@ def main --wrapped [
} }
if $host != (hostname) { if $host != (hostname) {
ssh -q -tt $host $" ssh -tt $host $"
rm -rf ncc rm -rf ncc
" "
git ls-files git ls-files
| sync --files-from - ./ ($host + ":ncc") | sync --files-from - ./ ($host + ":ncc")
ssh -q -tt $host $" ssh -tt $host $"
cd ncc cd ncc
./rebuild.nu ($host) ($arguments | str join ' ') ./rebuild.nu ($host) ($arguments | str join ' ')
" "