Skip to content

Commit

Permalink
fix(docs): Fixed creating Windows service commands (#8979)
Browse files Browse the repository at this point in the history
escaping " to \"
  • Loading branch information
WarsFeng authored and zeripath committed Nov 14, 2019
1 parent 04e6d76 commit c9b564c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/content/doc/installation/windows-service.en-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/content/doc/installation/windows-service.fr-fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/content/doc/installation/windows-service.zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 安装目录。
Expand Down
2 changes: 1 addition & 1 deletion docs/content/doc/installation/windows-service.zh-tw.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 安裝路徑。
Expand Down

0 comments on commit c9b564c

Please sign in to comment.