From aa33fe88db5141ebb9d827543fd03d2848d47b5f Mon Sep 17 00:00:00 2001 From: HTG-YT <39023054+HTG-YT@users.noreply.github.com> Date: Mon, 14 Jun 2021 20:53:27 +0800 Subject: [PATCH] comply with the move of `rickroll` --- src/interpret.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpret.rs b/src/interpret.rs index 0730a25..f47b33a 100644 --- a/src/interpret.rs +++ b/src/interpret.rs @@ -306,7 +306,7 @@ impl ExecEnv { exit(random()); } StmtKind::Rickroll => { - stdout().write_all(include_str!("../resources/rickroll").as_bytes()).expect("Failed to write to stdout") + stdout().write_all(include_str!("rickroll").as_bytes()).expect("Failed to write to stdout") } }