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:
parent
24eabcf2da
commit
4ebce41676
1 changed files with 3 additions and 3 deletions
|
@ -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 ' ')
|
||||||
"
|
"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue