Searched refs:tag_url (Results 1 – 1 of 1) sorted by relevance
/external/jsoncpp/ |
D | makerelease.py | 78 def svn_check_if_tag_exist( tag_url ): argument 83 list_stdout = svn_command( 'list', tag_url ) 96 def svn_tag_sandbox( tag_url, message ): argument 99 svn_command( 'copy', '-m', message, '.', tag_url ) 101 def svn_remove_tag( tag_url, message ): argument 104 svn_command( 'delete', '-m', message, tag_url ) 106 def svn_export( tag_url, export_dir ): argument 112 svn_command( 'export', tag_url, export_dir ) 300 tag_url = svn_join_url( SVN_TAG_ROOT, release_version ) 301 if svn_check_if_tag_exist( tag_url ): [all …]
|