Reserved directory for public interface now lives in public instead of _public

This commit is contained in:
nemunaire 2018-01-21 15:03:33 +01:00
parent c118035c33
commit c18465d498
3 changed files with 8 additions and 8 deletions

View file

@ -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)