Skip to content
Merged
4 changes: 2 additions & 2 deletions cli/cmd/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ var (
_warningProjectBytes = 1024 * 1024 * 10
_warningFileCount = 1000

_maxFileSizeBytes int64 = 1024 * 1024 * 512
_maxProjectSizeBytes int64 = 1024 * 1024 * 512
_maxFileSizeBytes int64 = 1024 * 1024 * 50 // 50mb
_maxProjectSizeBytes int64 = 1024 * 1024 * 50 // 50mb

_flagDeployEnv string
_flagDeployForce bool
Expand Down