Differences From Artifact [10f2482b0d]:
- File externals/Harpy/Tools/sign.eagle — part of check-in [0bcb1f55e5] at 2024-12-28 23:21:43 on branch trunk — Update Harpy signing tool from upstream. (user: mistachkin, size: 23687) [annotate] [blame] [check-ins using]
To Artifact [e2b78aa09a]:
- File externals/Harpy/Tools/sign.eagle — part of check-in [42a20c6753] at 2025-01-03 07:18:59 on branch trunk — Update Harpy signing tool yet again. (user: mistachkin, size: 23703) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
proc isScriptFile { fileName } {
switch -exact -- [file extension $fileName] {
.eeagle -
.etcl -
.tcl -
.tk -
.test -
.eagle {
return true
}
.xml {
set uri [object invoke Eagle._Constants.Xml ScriptNamespaceUri]
set data [readFile $fileName]
| > | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
proc isScriptFile { fileName } {
switch -exact -- [file extension $fileName] {
.eeagle -
.etcl -
.tcl -
.tk -
.test -
.ruleSet -
.eagle {
return true
}
.xml {
set uri [object invoke Eagle._Constants.Xml ScriptNamespaceUri]
set data [readFile $fileName]
|
| ︙ | ︙ |