]> source.dussan.org Git - gitea.git/commitdiff
fix(docs): Fixed creating Windows service commands (#8979)
authorWars <WarsFeng@gmail.com>
Thu, 14 Nov 2019 07:57:29 +0000 (15:57 +0800)
committerzeripath <art27@cantab.net>
Thu, 14 Nov 2019 07:57:29 +0000 (07:57 +0000)
escaping " to \"

docs/content/doc/installation/windows-service.en-us.md
docs/content/doc/installation/windows-service.fr-fr.md
docs/content/doc/installation/windows-service.zh-cn.md
docs/content/doc/installation/windows-service.zh-tw.md

index 6a4b33cb3f0f92a4183040a81a523d6143ac3d67..8e3b63a1c8365a4ed787a787156aea413caace01 100644 (file)
@@ -40,7 +40,7 @@ To register Gitea as a Windows service, open a command prompt (cmd) as an Admini
 then run the following command:
 
 ```
-sc create gitea start= auto binPath= ""C:\gitea\gitea.exe" web --config "C:\gitea\custom\conf\app.ini""
+sc create gitea start= auto binPath= "\"C:\gitea\gitea.exe\" web --config \"C:\gitea\custom\conf\app.ini\""
 ```
 
 Do not forget to replace `C:\gitea` with the correct Gitea directory.
index 66cc5fc6dd2f5d59162098dcf02e3db18998d9dc..0a45bad20c9671bcd06c58f7254a95f7951197bc 100644 (file)
@@ -18,7 +18,7 @@ menu:
 Pour activer le service Windows Gitea, ouvrez une `cmd` en tant qu'Administrateur puis utilisez la commande suivante :
 
 ```
-sc create gitea start= auto binPath= ""C:\gitea\gitea.exe" web --config "C:\gitea\custom\conf\app.ini""
+sc create gitea start= auto binPath= "\"C:\gitea\gitea.exe\" web --config \"C:\gitea\custom\conf\app.ini\""
 ```
 
 N'oubliez pas de remplacer `C:\gitea` par le chemin que vous avez utilisez pour votre installation.
index 6f03f38b8ea545df509d457fb293752f9c0c9238..063c644de544f791e87724ee021d8e910297a805 100644 (file)
@@ -18,7 +18,7 @@ menu:
 要注册为Windows服务,首先以Administrator身份运行 `cmd`,然后执行以下命令:
 
 ```
-sc create gitea start= auto binPath= ""C:\gitea\gitea.exe" web --config "C:\gitea\custom\conf\app.ini""
+sc create gitea start= auto binPath= "\"C:\gitea\gitea.exe\" web --config \"C:\gitea\custom\conf\app.ini\""
 ```
 
 别忘了将 `C:\gitea` 替换成你的 Gitea 安装目录。
index 23dba7f8c9d4b7e7bf110d29844047b976b8a3f2..2ee886ff2eac05fbd51597791e5b9569acae5002 100644 (file)
@@ -18,7 +18,7 @@ menu:
 要註冊為 Windows 服務,首先要以管理者身份執行 `cmd`,跳出命令列視窗後執行底下指令:
 
 ```
-sc create gitea start= auto binPath= ""C:\gitea\gitea.exe" web --config "C:\gitea\custom\conf\app.ini""
+sc create gitea start= auto binPath= "\"C:\gitea\gitea.exe\" web --config \"C:\gitea\custom\conf\app.ini\""
 ```
 
 別忘記將 `C:\gitea` 取代為您的 Gitea 安裝路徑。