Changes between Initial Version and Version 1 of Ticket #3455, comment 5
- Timestamp:
- 07/23/19 03:39:43 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3455, comment 5
initial v1 14 14 15 15 As shown above, the url parameter does not appear to work (unless I am not using it correctly). 16 17 The issues appears to be in function install_extension_win(name) at line 1011 of 18 https://github.com/OSGeo/grass/blob/master/scripts/g.extension/g.extension.py 19 20 21 {{{ 22 base_url = "http://wingrass.fsv.cvut.cz/" \ 23 "grass%(major)s%(minor)s/%(platform)s/addons/" \ 24 "grass-%(major)s.%(minor)s.%(patch)s" % \ 25 {'platform': platform, 26 'major': version[0], 'minor': version[1], 27 'patch': version[2]} 28 }}}