aboutsummaryrefslogtreecommitdiff
path: root/src/makefile/mod.rs
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-04-02 20:38:43 -0600
committerMelody Horn <melody@boringcactus.com>2021-04-02 20:38:43 -0600
commit0d704e6a3db091f6ab38b4f535491e73cb0a9ce4 (patch)
tree3123c05840be16fa68a687d4ffbf554cc441d64d /src/makefile/mod.rs
parent441b137307ba5fbc22d0d32dca6e5c0f9559dbf5 (diff)
downloadmakers-0d704e6a3db091f6ab38b4f535491e73cb0a9ce4.tar.gz
makers-0d704e6a3db091f6ab38b4f535491e73cb0a9ce4.zip
don't leave dbg! in there oops
Diffstat (limited to 'src/makefile/mod.rs')
-rw-r--r--src/makefile/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/makefile/mod.rs b/src/makefile/mod.rs
index fb92a01..75805f6 100644
--- a/src/makefile/mod.rs
+++ b/src/makefile/mod.rs
@@ -401,12 +401,10 @@ impl<'a> Makefile<'a> {
if line == "endef" {
break;
}
- dbg!(&value, &line);
if !value.is_empty() {
value.extend(TokenString::text("\n"));
}
value.extend(line.parse()?);
- dbg!(&value);
}
(line_tokens, value)
} else {