aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/dump.go
diff options
context:
space:
mode:
authorJoubert RedRat <eu+github@redrat.com.br>2016-12-21 10:13:17 -0200
committerLunny Xiao <xiaolunwen@gmail.com>2016-12-21 20:13:17 +0800
commitce21ed6c3490cdfad797319cbb1145e2330a8fef (patch)
tree570c4eded0ca748c651209a0018d0ec7240d59f2 /cmd/dump.go
parent618407c018cdf668ceedde7454c42fb22ba422d8 (diff)
downloadgitea-ce21ed6c3490cdfad797319cbb1145e2330a8fef.tar.gz
gitea-ce21ed6c3490cdfad797319cbb1145e2330a8fef.zip
Remove remaining Gogs reference on locales and cmd (#430)
Diffstat (limited to 'cmd/dump.go')
-rw-r--r--cmd/dump.go21
1 files changed, 11 insertions, 10 deletions
diff --git a/cmd/dump.go b/cmd/dump.go
index d17b5e2fb0..325ad40451 100644
--- a/cmd/dump.go
+++ b/cmd/dump.go
@@ -1,4 +1,5 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
+// Copyright 2016 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
@@ -21,9 +22,9 @@ import (
// CmdDump represents the available dump sub-command.
var CmdDump = cli.Command{
Name: "dump",
- Usage: "Dump Gogs files and database",
+ Usage: "Dump Gitea files and database",
Description: `Dump compresses all related files and database into zip file.
-It can be used for backup and capture Gogs server image to send to maintainer`,
+It can be used for backup and capture Gitea server image to send to maintainer`,
Action: runDump,
Flags: []cli.Flag{
cli.StringFlag{
@@ -55,14 +56,14 @@ func runDump(ctx *cli.Context) error {
if _, err := os.Stat(tmpDir); os.IsNotExist(err) {
log.Fatalf("Path does not exist: %s", tmpDir)
}
- TmpWorkDir, err := ioutil.TempDir(tmpDir, "gogs-dump-")
+ TmpWorkDir, err := ioutil.TempDir(tmpDir, "gitea-dump-")
if err != nil {
log.Fatalf("Fail to create tmp work directory: %v", err)
}
log.Printf("Creating tmp work dir: %s", TmpWorkDir)
- reposDump := path.Join(TmpWorkDir, "gogs-repo.zip")
- dbDump := path.Join(TmpWorkDir, "gogs-db.sql")
+ reposDump := path.Join(TmpWorkDir, "gitea-repo.zip")
+ dbDump := path.Join(TmpWorkDir, "gitea-db.sql")
log.Printf("Dumping local repositories...%s", setting.RepoRootPath)
zip.Verbose = ctx.Bool("verbose")
@@ -75,18 +76,18 @@ func runDump(ctx *cli.Context) error {
log.Fatalf("Fail to dump database: %v", err)
}
- fileName := fmt.Sprintf("gogs-dump-%d.zip", time.Now().Unix())
+ fileName := fmt.Sprintf("gitea-dump-%d.zip", time.Now().Unix())
log.Printf("Packing dump files...")
z, err := zip.Create(fileName)
if err != nil {
log.Fatalf("Fail to create %s: %v", fileName, err)
}
- if err := z.AddFile("gogs-repo.zip", reposDump); err != nil {
- log.Fatalf("Fail to include gogs-repo.zip: %v", err)
+ if err := z.AddFile("gitea-repo.zip", reposDump); err != nil {
+ log.Fatalf("Fail to include gitea-repo.zip: %v", err)
}
- if err := z.AddFile("gogs-db.sql", dbDump); err != nil {
- log.Fatalf("Fail to include gogs-db.sql: %v", err)
+ if err := z.AddFile("gitea-db.sql", dbDump); err != nil {
+ log.Fatalf("Fail to include gitea-db.sql: %v", err)
}
customDir, err := os.Stat(setting.CustomPath)
if err == nil && customDir.IsDir() {