sync: handle new sync format: filenames and locations
This commit is contained in:
parent
12cb4e95f4
commit
d303ecfa38
4 changed files with 14 additions and 33 deletions
|
|
@ -19,7 +19,7 @@ import (
|
|||
func SyncExerciceHints(i Importer, exercice fic.Exercice) (errs []string) {
|
||||
params, err := parseExerciceParams(i, exercice.Path)
|
||||
if err != nil {
|
||||
errs = append(errs, fmt.Sprintf("%q: defines.txt: %s", path.Base(exercice.Path), err))
|
||||
errs = append(errs, fmt.Sprintf("%q: challenge.txt: %s", path.Base(exercice.Path), err))
|
||||
}
|
||||
|
||||
if _, err := exercice.WipeHints(); err != nil {
|
||||
|
|
|
|||
Reference in a new issue