Skip to content

Commit

Permalink
Merge pull request #3634 from oliver-sanders/remove-scp-transfer
Browse files Browse the repository at this point in the history
remove cylc scp-transfer
  • Loading branch information
hjoliver authored Jun 1, 2020
2 parents a45b4f2 + 09c5f91 commit dc26245
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 96 deletions.
92 changes: 0 additions & 92 deletions bin/cylc-scp-transfer

This file was deleted.

2 changes: 1 addition & 1 deletion cylc/flow/etc/cylc-bash-completion
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ _cylc() {
cur="${COMP_WORDS[COMP_CWORD]}"
sec="${COMP_WORDS[1]}"
opts="$(cylc print -x -y 2>/dev/null)"
suite_cmds="broadcast|bcast|cat-log|log|check-versions|checkpoint|diff|compare|dump|edit|ext-trigger|external-trigger|get-directory|get-suite-config|get-config|get-suite-version|get-cylc-version|graph|graph-diff|hold|insert|jobscript|kill|list|ls|ls-checkpoints|tui|nudge|ping|poll|print|register|release|unhold|reload|remove|report-timings|reset|restart|run|start|scan|scp-transfer|search|grep|set-verbosity|show|spawn|stop|shutdown|submit|single|suite-state|test-battery|trigger|validate|view|warranty"
suite_cmds="broadcast|bcast|cat-log|log|check-versions|checkpoint|diff|compare|dump|edit|ext-trigger|external-trigger|get-directory|get-suite-config|get-config|get-suite-version|get-cylc-version|graph|graph-diff|hold|insert|jobscript|kill|list|ls|ls-checkpoints|tui|nudge|ping|poll|print|register|release|unhold|reload|remove|report-timings|reset|restart|run|start|scan|search|grep|set-verbosity|show|spawn|stop|shutdown|submit|single|suite-state|test-battery|trigger|validate|view|warranty"


if [[ ${COMP_CWORD} -eq 1 ]]; then
Expand Down
2 changes: 1 addition & 1 deletion cylc/flow/scripts/cylc.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from cylc.flow import __version__

# These will be ported to python as click commands
bash_commands = ["cylc-graph-diff", "cylc-jobscript", "cylc-scp-transfer"]
bash_commands = ["cylc-graph-diff", "cylc-jobscript"]

# First step of the click port, the list won't be necessary after that
command_list = bash_commands + list(
Expand Down
2 changes: 0 additions & 2 deletions cylc/flow/scripts/cylc_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@ def category_help(category):
utility_commands = {}
utility_commands['cycle-point'] = [
'cycle-point', 'cyclepoint', 'datetime', 'cycletime']
utility_commands['scp-transfer'] = ['scp-transfer']
utility_commands['suite-state'] = ['suite-state']
utility_commands['ls-checkpoints'] = ['ls-checkpoints']
utility_commands['report-timings'] = ['report-timings']
Expand Down Expand Up @@ -380,7 +379,6 @@ def category_help(category):
# utility
comsum['cycle-point'] = 'Cycle point arithmetic and filename templating'
comsum['jobscript'] = 'Generate a task job script and print it to stdout'
comsum['scp-transfer'] = 'Scp-based file transfer for cylc suites'
comsum['suite-state'] = 'Query the task states in a suite'
comsum['ls-checkpoints'] = 'Display task pool etc at given events'
comsum['report-timings'] = 'Generate a report on task timing data'
Expand Down

0 comments on commit dc26245

Please sign in to comment.