Overview
| Comment: | Fix issue with SDK downlod |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
0d7652bd18006bce7c08d79da5054e2d |
| User & Date: | rkeene on 2022-01-01 16:41:12 |
| Other Links: | manifest | tags |
Context
|
2022-01-01
| ||
| 16:41 | Upgrade to Tcl/Tk 8.6.12 check-in: ee4da6e861 user: rkeene tags: trunk | |
| 16:41 | Fix issue with SDK downlod check-in: 0d7652bd18 user: rkeene tags: trunk | |
|
2021-09-30
| ||
| 12:21 | Add Ruby Lane JSON package check-in: e9f4a45835 user: rkeene tags: trunk | |
Changes
Modified build/utils/download-api-client from [c2c2f1c92f] to [8348178a43].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | - + |
#! /usr/bin/env bash
# Define endpoint
endpoint_url="https://kitcreator.rkeene.org/kitcreator"
# Help
function print_help() {
echo 'download-api-client [--platform <platform>] [--tcl-version <version>]'
echo ' [--kitcreator-version <version>] [--kitdll]'
echo ' [--threaded] [--debug] [--dynamictk]'
echo ' [--staticpkgs] [--verbose] [--pkg-<package>...]'
|
| ︙ | |||
41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | + |
nextArg="${arg:2}"
nextArg="${nextArg//-/_}"
;;
--kitdll|--threaded|--debug|--dynamictk|--staticpkgs)
options+=("${arg:2}")
;;
--sdk)
options+=(kitdll)
downloadSDK='true'
;;
--opt-*)
options+=("${arg:6}")
;;
--pkg-*)
packages+=("${arg:6}")
|
| ︙ |