Skip to content

Commit

Permalink
Merge branch '3.7' of https://github.com/JumpMind/symmetric-ds.git in…
Browse files Browse the repository at this point in the history
…to 3.7
  • Loading branch information
jumpmind-josh committed Jun 10, 2016
2 parents c0a7d19 + 629a148 commit 8624eb3
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions symmetric-client-clib-assemble/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ task upload {
test_name = "test"
sym_name = "sym"
} else {
priavte_key = "~/.ssh/id_rsa"
private_key = "~/.ssh/id_rsa"
lib_name = "libsym.so"
test_name = "test"
sym_name = "sym"
Expand All @@ -339,32 +339,38 @@ task upload {
ant.scp(
file: file("../symmetric-client-clib/build/libs/sym/shared/release/${lib_name}"),
todir: "jumpmind@raven.loc:/home/jumpmind/clib/release",
keyfile: file(private_key)
keyfile: file(private_key),
trust: true
)
ant.scp(
file: file("../symmetric-client-clib-test/build/exe/test/release/${test_name}"),
todir: "jumpmind@raven.loc:/home/jumpmind/clib/release",
keyfile: file(private_key)
keyfile: file(private_key),
trust: true
)
ant.scp(
file: file("../symmetric-client-native/build/exe/sym/release/${sym_name}"),
todir: "jumpmind@raven.loc:/home/jumpmind/clib/release",
keyfile: file(private_key)
keyfile: file(private_key),
trust: true
)
ant.scp(
file: file("../symmetric-client-clib/build/libs/sym/shared/debug/${lib_name}"),
todir: "jumpmind@raven.loc:/home/jumpmind/clib/debug",
keyfile: file(private_key)
keyfile: file(private_key),
trust: true
)
ant.scp(
file: file("../symmetric-client-clib-test/build/exe/test/debug/${test_name}"),
todir: "jumpmind@raven.loc:/home/jumpmind/clib/debug",
keyfile: file(private_key)
keyfile: file(private_key),
trust: true
)
ant.scp(
file: file("../symmetric-client-native/build/exe/sym/debug/${sym_name}"),
todir: "jumpmind@raven.loc:/home/jumpmind/clib/debug",
keyfile: file(private_key)
keyfile: file(private_key),
trust: true
)
}
}
Expand Down

0 comments on commit 8624eb3

Please sign in to comment.