Reserved directory for public interface now lives in public instead of _public
This commit is contained in:
parent
c118035c33
commit
c18465d498
3 changed files with 8 additions and 8 deletions
|
@ -54,7 +54,7 @@ func genTeamMyFile(team fic.Team) error {
|
|||
|
||||
// Generate public my.json file
|
||||
func genMyPublicFile() error {
|
||||
dirPath := path.Join(TeamsDir, "_public")
|
||||
dirPath := path.Join(TeamsDir, "public")
|
||||
|
||||
if s, err := os.Stat(dirPath); os.IsNotExist(err) {
|
||||
os.MkdirAll(dirPath, 0777)
|
||||
|
|
Reference in a new issue