x = "output/file.zip"
x =~ /output\/.\../
returns nil. There is something wrong with escaping the period, but I can't figure it out.
x = "output/file.zip"
x =~ /output\/.\../
returns nil. There is something wrong with escaping the period, but I can't figure it out.