Tholp's bespoke website generator

Fix for_each_file_in_group_reverse not actually doing anything different

Changed files
+2 -2
src
macros
+2 -2
src/macros/for_each.rs
···
scope: &[Token],
) -> Vec<Token> {
let mut files: Vec<String> = Vec::new();
-
for g in proj_context.filegroups.iter().rev() {
if g.name == args[1] {
-
for f in &g.files {
let path = f
.file_input
.strip_prefix(&proj_context.input_folder)
···
scope: &[Token],
) -> Vec<Token> {
let mut files: Vec<String> = Vec::new();
+
for g in &proj_context.filegroups {
if g.name == args[1] {
+
for f in g.files.iter().rev() {
let path = f
.file_input
.strip_prefix(&proj_context.input_folder)