diff options
author | Unknwon <u@gogs.io> | 2016-07-23 17:36:15 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-07-23 17:36:15 +0800 |
commit | 745167d57a02f2bae07103886fa5e62e398cfbcb (patch) | |
tree | c3d84ff93768084c467cf482e5e38bd3aa5732d2 /gogs.go | |
parent | d7bdc1de8d98d7f58971f822e10c1650a450b194 (diff) | |
download | gitea-745167d57a02f2bae07103886fa5e62e398cfbcb.tar.gz gitea-745167d57a02f2bae07103886fa5e62e398cfbcb.zip |
#3157 create user path before rename repository while transfer
os.Rename does not create parent directory automatically when not exist
Diffstat (limited to 'gogs.go')
-rw-r--r-- | gogs.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.9.49.0723" +const APP_VER = "0.9.50.0723" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) |