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] {
|
||||
(rsync
|
||||
--rsh "ssh -q"
|
||||
--rsh "ssh"
|
||||
--compress
|
||||
--delete --recursive --force
|
||||
--delete-excluded
|
||||
|
@ -22,14 +22,14 @@ def main --wrapped [
|
|||
}
|
||||
|
||||
if $host != (hostname) {
|
||||
ssh -q -tt $host $"
|
||||
ssh -tt $host $"
|
||||
rm -rf ncc
|
||||
"
|
||||
|
||||
git ls-files
|
||||
| sync --files-from - ./ ($host + ":ncc")
|
||||
|
||||
ssh -q -tt $host $"
|
||||
ssh -tt $host $"
|
||||
cd ncc
|
||||
./rebuild.nu ($host) ($arguments | str join ' ')
|
||||
"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue