sync: import files first during the full import, to permit file dependency to flag
This commit is contained in:
parent
41f815f54d
commit
d9fb261232
1 changed files with 1 additions and 1 deletions
|
@ -34,8 +34,8 @@ func SyncDeep(i Importer) (errs map[string][]string) {
|
||||||
|
|
||||||
if exercices, err := theme.GetExercices(); err == nil {
|
if exercices, err := theme.GetExercices(); err == nil {
|
||||||
for _, exercice := range exercices {
|
for _, exercice := range exercices {
|
||||||
errs[theme.Name] = append(errs[theme.Name], SyncExerciceFlags(i, exercice)...)
|
|
||||||
errs[theme.Name] = append(errs[theme.Name], SyncExerciceFiles(i, exercice)...)
|
errs[theme.Name] = append(errs[theme.Name], SyncExerciceFiles(i, exercice)...)
|
||||||
|
errs[theme.Name] = append(errs[theme.Name], SyncExerciceFlags(i, exercice)...)
|
||||||
errs[theme.Name] = append(errs[theme.Name], SyncExerciceHints(i, exercice)...)
|
errs[theme.Name] = append(errs[theme.Name], SyncExerciceHints(i, exercice)...)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue