Fix perms for http/ssh clone (#288)

هذا الالتزام موجود في:
Thomas Miceli
2024-05-28 01:30:08 +02:00
ملتزم من قبل GitHub
الأصل 77d87aeecd
التزام 38892d8a4a
12 ملفات معدلة مع 225 إضافات و22 حذوفات

عرض الملف

@@ -30,7 +30,7 @@ var CmdStart = cli.Command{
Usage: "Start Opengist server",
Action: func(ctx *cli.Context) error {
Initialize(ctx)
go web.NewServer(os.Getenv("OG_DEV") == "1").Start()
go web.NewServer(os.Getenv("OG_DEV") == "1", path.Join(config.GetHomeDir(), "sessions")).Start()
go ssh.Start()
select {}
},