summaryrefslogtreecommitdiffstats
path: root/scripts/windows
diff options
context:
space:
mode:
authorAvelino <thiago@avelino.xxx>2016-12-02 03:18:58 -0200
committerAvelino <thiago@avelino.xxx>2016-12-02 03:18:58 -0200
commitb78d3f5865609bab96ab68a020123ad55db315a5 (patch)
treed0afb2a95860ab3655aa478e2bcd7a019ad0821b /scripts/windows
parent5ab85372da74bd95f7143fd59c2c600d4c9894d0 (diff)
downloadgitea-b78d3f5865609bab96ab68a020123ad55db315a5.tar.gz
gitea-b78d3f5865609bab96ab68a020123ad55db315a5.zip
Fixed project name on scripts
Diffstat (limited to 'scripts/windows')
-rw-r--r--scripts/windows/install-as-service.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/windows/install-as-service.bat b/scripts/windows/install-as-service.bat
index 09302cc01d..0a7eef9b53 100644
--- a/scripts/windows/install-as-service.bat
+++ b/scripts/windows/install-as-service.bat
@@ -6,19 +6,19 @@
:: https://nssm.cc/download
:: This script itself should run in the gogs path, too.
:: In case of startup failure, please read carefully the log file.
-:: Make sure Gogs work running manually with "gogs web" before running
+:: Make sure Gitea work running manually with "gogs web" before running
:: this script.
:: And, please, read carefully the installation docs first:
:: https://gogs.io/docs/installation
:: To unistall the service, run "nssm remove gogs" and restart Windows.
-:: Set the folder where you extracted Gogs. Omit the last slash.
+:: Set the folder where you extracted Gitea. Omit the last slash.
SET gogspath=C:\gogs
nssm install gogs "%gogspath%\gogs.exe"
nssm set gogs AppParameters "web"
nssm set gogs Description "A painless self-hosted Git service."
-nssm set gogs DisplayName "Gogs - Go Git Service"
+nssm set gogs DisplayName "Gitea - Git with a cup of tea"
nssm set gogs Start SERVICE_DELAYED_AUTO_START
nssm set gogs AppStdout "%gogspath%\gogs.log"
nssm start gogs