Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Avoid prompts from fossil. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8da49a9486300a9c3ddbc05d8cea409c |
User & Date: | peter 2021-02-06 13:06:50.031 |
Context
2021-02-06
| ||
13:13 | Revert Makefile change from 3c9895 check-in: 90da25cae6 user: peter tags: trunk | |
13:06 | Avoid prompts from fossil. check-in: 8da49a9486 user: peter tags: trunk | |
2020-12-10
| ||
12:23 | Refactoring and cleanup of Plugin code. Prepare for runtime plugin. check-in: 3c9895c599 user: peter tags: trunk | |
Changes
Changes to src/rev.tcl.
︙ | ︙ | |||
1349 1350 1351 1352 1353 1354 1355 | if {[llength $args] == 0} { set target all } elseif {[llength $args] == 1} { set target [file tail [lindex $args 0]] } else { set target "[file tail [lindex $args 0]] ..." } | | | 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 | if {[llength $args] == 0} { set target all } elseif {[llength $args] == 1} { set target [file tail [lindex $args 0]] } else { set target "[file tail [lindex $args 0]] ..." } set precmd [list fossil commit -no-prompt -m] set postcmd $args GetTopDir [pwd] topdir _ # Files to commit might be relative to topdir, take care of that. # This can happen with -review in a subdir. set usetopdir "" foreach f $args { if { ! [file exists $f]} { |
︙ | ︙ |