1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env tclsh
# KitCreator downloader v0.2.2 -- download Tclkits created with the KitCreator
# Web Interface. Works with Tcl 8.5+ and Jim Tcl v0.75+. This script requires
# that cURL be available through [exec curl].
# Copyright (C) 2016, dbohdan.
# License: MIT.
proc download url {
if {![string match */buildinfo $url]} {
# Guess at what the buildinfo URL might be if we are given, e.g., a
|
|
|
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env tclsh
# Tclkit Downloader v0.2.2 -- download Tclkits created with the KitCreator
# Web Interface. Works with Tcl 8.5+ and Jim Tcl v0.75+. This script requires
# that cURL be available through [exec curl].
# Copyright (C) 2016, dbohdan.
# License: MIT.
proc download url {
if {![string match */buildinfo $url]} {
# Guess at what the buildinfo URL might be if we are given, e.g., a
|