Show slug in episode listing
Assisted-by: Claude Opus 4.6 via pi
change ysrqpxplsywlkqrmpzvpxvuoytuuptyw
commit 51bc83d430397ef1fafcd93d3702c8ba44e3b0f9
author Alpha Chen <alpha@kejadlen.dev>
date
parent wysluqok
diff --git a/Rakefile b/Rakefile
index d44d2cf..0427c62 100644
--- a/Rakefile
+++ b/Rakefile
@@ -41,7 +41,7 @@ desc "List all episodes from the feed"
 task episodes: HRN_FEED do
   episodes.sort_by(&:number).each do |ep|
     status = Dir.glob(File.join(TRANSCRIPTS_DIR, "#{ep.slug}.*")).any? ? "✓" : " "
-    puts "[#{status}] #{ep.number}. #{ep.title}"
+    puts "[#{status}] #{ep.slug}  #{ep.title}"
   end
 end