diff options
| author | Jeff Carr <[email protected]> | 2025-10-17 05:32:38 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-17 05:32:38 -0500 |
| commit | df0979a9468e56a930d0fe64c41066bd21dc3b04 (patch) | |
| tree | fdd2ac878cf87f666f036d2950f4e8e5f99b51fe | |
| parent | cc7ead38db8403089e428caf1ef634b42455389e (diff) | |
lame panicv0.25.94
| -rw-r--r-- | doNormal.go | 4 | ||||
| -rw-r--r-- | doPatch.go | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/doNormal.go b/doNormal.go index ff47a79..537b751 100644 --- a/doNormal.go +++ b/doNormal.go @@ -60,6 +60,10 @@ func doNormalAll() (string, error) { return s, err } +func (a *args) DoNormal() (string, error) { + return doNormalAttempt() +} + // try to switch to "Normal" mode func doNormalAttempt() (string, error) { start := time.Now() @@ -165,6 +165,11 @@ func doPatchProcess() (string, error) { } continue } + if argv.Patch == nil { + needfix += 1 + continue + } + // if !me.argv.If("--apply") { if !argv.Patch.Apply { // --apply isn't set. don't go any further needfix += 1 |
