Commit eb67d6aeabb93788eac434850cb30e03173e4887

Authored by Göran Krampe
1 parent ed8fc143

Added compression to scp

Showing 1 changed file with 4 additions and 4 deletions
blimp.nim
... ... @@ -69,16 +69,16 @@ url = "blimp@build.3dicc.com:/var/opt/blimpstore"
69 69 # $1 is the blimp filename
70 70 # $2 is the area url above
71 71 # $3 is the local blimpstore directory
72   -upload = "scp -pq '$3/$1' '$2/'"
73   -download = "scp -pq '$2/$1' '$3/'"
  72 +upload = "scp -pqC '$3/$1' '$2/'"
  73 +download = "scp -pqC '$2/$1' '$3/'"
74 74  
75 75  
76 76 [release]
77 77 # This area can be used with upload/download commands and --area option.
78 78 # -r makes it possible to give directories as arguments for recursive handling.
79 79 url = "blimp@build.3dicc.com:/var/opt/release"
80   -upload = "scp -r '$3/$1' '$2/'"
81   -download = "scp -r '$2/$1' '$3/'"
  80 +upload = "scp -rC '$3/$1' '$2/'"
  81 +download = "scp -rC '$2/$1' '$3/'"
82 82 """
83 83  
84 84  
... ...