68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
-
+
-
+
|
set fossilVersionCommand {fossil version}
}
#
# NOTE: The regular expression pattern used when attempting to verify
# that Fossil is installed.
#
variable fossilVersionPattern; # DEFAULT: {^This is fossil version 1\.\d+ }
variable fossilVersionPattern; # DEFAULT: {^This is fossil version [12]... }
if {![info exists fossilVersionPattern]} then {
set fossilVersionPattern {^This is fossil version 1\.\d+ }
set fossilVersionPattern {^This is fossil version [12]\.\d+ }
}
#
# NOTE: The command to use when attempting to check for changes prior to
# staging files using Fossil.
#
variable fossilChangesCommand; # DEFAULT: fossil changes ...
|