From 4d83fd4238e177d9327c760a5386bc53f25dedbb Mon Sep 17 00:00:00 2001 From: Michael Li Date: Mon, 17 Feb 2020 22:48:24 +0800 Subject: Use go-bindata to embed `public` and `templates` files into binary (#5920) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fixed private repositories are hidden in the organization's view * use go-bindata integrate public and templates files to gogs binary * optimize Dockerfile don't COPY public and templates files * use kevinburke's go-bindata to generate assets code * reset develepment as default run mode in configure file * optimize generated assets code relayout and help function * fixed code format * Update conf/app.ini * assets: add LICENSE headers * Some housekeeping * assets/public: simplify code logic * assets/templates: simplify code logic * cmd/web: more concise variable names * Minor changes * Add custom public and templates support back Co-authored-by: ᴜɴᴋɴᴡᴏɴ --- internal/osutil/osutil.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 internal/osutil/osutil.go (limited to 'internal/osutil') diff --git a/internal/osutil/osutil.go b/internal/osutil/osutil.go new file mode 100644 index 00000000..6573cea0 --- /dev/null +++ b/internal/osutil/osutil.go @@ -0,0 +1,18 @@ +// Copyright 2020 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package osutil + +import ( + "os" +) + +// IsFile returns true if given path exists as a file (i.e. not a directory). +func IsFile(path string) bool { + f, e := os.Stat(path) + if e != nil { + return false + } + return !f.IsDir() +} -- cgit v1.2.3