Searched refs:tag_url (Results 1 – 1 of 1) sorted by relevance
/external/jsoncpp/ |
D | makerelease.py | 82 def svn_check_if_tag_exist( tag_url ): argument 87 list_stdout = svn_command( 'list', tag_url ) 100 def svn_tag_sandbox( tag_url, message ): argument 103 svn_command( 'copy', '-m', message, '.', tag_url ) 105 def svn_remove_tag( tag_url, message ): argument 108 svn_command( 'delete', '-m', message, tag_url ) 110 def svn_export( tag_url, export_dir ): argument 116 svn_command( 'export', tag_url, export_dir ) 304 tag_url = svn_join_url( SVN_TAG_ROOT, release_version ) 305 if svn_check_if_tag_exist( tag_url ): [all …]
|