10
11
12
13
14
15
16
17
18
19
20
21
|
# See the file "license.terms" for information on usage and redistribution of
# this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: $
#
###############################################################################
variable quiet false
variable verboseTemporaryDirectory true
variable persistentRootDirectory [file join \
[::PackageRepository::getFileTempDirectory] pkgd_override]
|
<
>
|
|
>
>
>
>
>
|
|
>
>
>
>
>
>
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# See the file "license.terms" for information on usage and redistribution of
# this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: $
#
###############################################################################
#
# NOTE: These settings apply to the "pkgd.eagle" script.
#
namespace eval ::PackageDownloader {
#
# NOTE: This setting overrides the local directory where packages
# are persisted ("permanently") for use by the interpreter.
#
variable persistentRootDirectory [file join \
[::PackageRepository::getFileTempDirectory] pkgd_override]
#
# NOTE: These settings enable detailed diagnostic output from the
# the URI downloader used by native Tcl -AND- the temporary
# directory handling subsystem.
#
variable quiet false; # DEFAULT: true
variable verboseTemporaryDirectory true; # DEFAULT: false
}
|