summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-05 04:54:05 -0600
committerJeff Carr <[email protected]>2025-01-05 04:54:05 -0600
commit79ec3ce469623e70bb8ee29218e0bb1aaae8c39a (patch)
tree73a302176b63b2937fb757d402c6be522bd06fcb /main.go
parent92ff05cf6fe09578538bb7dde0769d2f72d018a6 (diff)
stop apply if repos are dirty
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 6ac2a80..7895c6d 100644
--- a/main.go
+++ b/main.go
@@ -81,7 +81,7 @@ func main() {
if err != nil {
badExit(err)
}
- if err = applyPatches(pset); err == nil {
+ if err = applyPatchset(pset); err == nil {
okExit("applied patch ok")
}
badExit(err)