Skip to content

Commit de5d6d5

Browse files
committed
Use standard ssh port and correct path for uploading docs
1 parent d8fd87f commit de5d6d5

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

benchmark/CMakeLists.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,13 @@ foreach(_file IN LISTS immer_benchmarks)
112112
endforeach()
113113

114114
set(immer_ssh_method
115-
ssh -p 5488
116-
-o StrictHostKeyChecking=no)
115+
ssh -o StrictHostKeyChecking=no)
117116

118117
add_custom_target(upload-benchmark-reports
119118
COMMAND
120119
rsync -av -e \"${immer_ssh_method}\"
121120
${immer_benchmark_report_base_dir}
122-
raskolnikov@sinusoid.es:public/misc/immer/)
121+
root@sinusoid.es:/var/lib/syncthing/public/misc/immer/)
123122

124123
add_custom_target(copy-benchmark-reports
125124
COMMAND

doc/CMakeLists.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ add_custom_target(docs
1212
add_dependencies(docs doxygen)
1313

1414
set(immer_ssh_method
15-
ssh -p 5488
1615
-o StrictHostKeyChecking=no)
1716

1817
add_custom_target(upload-docs
1918
COMMAND
2019
rsync -av -e \"${immer_ssh_method}\"
2120
${CMAKE_CURRENT_SOURCE_DIR}/_build/html/*
22-
raskolnikov@sinusoid.es:public/immer/)
21+
root@sinusoid.es:/var/lib/syncthing/public/immer/)

0 commit comments

Comments
 (0)