소스 검색

improve: force verifying signature

Yeuoly 7 달 전
부모
커밋
b3b78a0fe3
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      internal/types/app/default.go

+ 1 - 0
internal/types/app/default.go

@@ -28,6 +28,7 @@ func (config *Config) SetDefault() {
 	setDefaultInt(&config.PersistenceStorageMaxSize, 100*1024*1024)
 	setDefaultString(&config.PluginPackageCachePath, "plugin_packages")
 	setDefaultString(&config.PythonInterpreterPath, "/usr/bin/python3")
+	setDefaultBool(&config.ForceVerifyingSignature, false)
 }
 
 func setDefaultInt[T constraints.Integer](value *T, defaultValue T) {