Files
cadmium/patches/run.go.diff

28 lines
728 B
Diff

--- a/caddy/caddymain/run.go 2018-07-12 01:02:24.244606006 +0100
+++ b/caddy/caddymain/run.go 2018-07-12 01:02:48.584895759 +0100
@@ -117,7 +117,7 @@
os.Exit(0)
}
if version {
- fmt.Printf("%s %s (unofficial)\n", appName, appVersion)
+ fmt.Printf("%s %s\n", appName, appVersion)
if devBuild && gitShortStat != "" {
fmt.Printf("%s\n%s\n", gitShortStat, gitFilesModified)
}
@@ -490,7 +490,7 @@
return envMap, nil
}
-const appName = "Caddy"
+const appName = "Cadmium"
// Flags that control program flow or startup
var (
@@ -519,4 +519,4 @@
gitFilesModified string // git diff-index --name-only HEAD
)
-const enableTelemetry = true
+const enableTelemetry = false
lupine@gitlab-t470p:~/Desktop/caddy