mirror of
https://github.com/RGBCube/Site
synced 2025-08-01 13:37:49 +00:00
Fix number can't be coerced to string
This commit is contained in:
parent
7e67fdc427
commit
d530911c39
1 changed files with 2 additions and 2 deletions
|
@ -170,8 +170,8 @@
|
|||
|
||||
serviceConfig = let
|
||||
arguments = [
|
||||
"--http-port" cfg.httpPort
|
||||
"--https-port" cfg.httpsPort
|
||||
"--http-port" (toString cfg.httpPort)
|
||||
"--https-port" (toString cfg.httpsPort)
|
||||
"--log-level" cfg.logLevel
|
||||
] ++ (optionals (cfg.certificate != null) [
|
||||
"--certificate" cfg.certificate
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue