From 529b34d84e204e936c538e170febf06cce9f4b65 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Fri, 19 Jul 2019 17:01:50 -0500 Subject: [PATCH] Fix jpm stupid bug. --- auxlib/cook.janet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auxlib/cook.janet b/auxlib/cook.janet index cac8d73c..13fd0d95 100644 --- a/auxlib/cook.janet +++ b/auxlib/cook.janet @@ -298,7 +298,7 @@ (def- filepath-replacer "Convert url with potential bad characters into a file path element." - (peg/compile ~(% (+ (/ '(set "<>:\"/\\|?*") "_") '1)))) + (peg/compile ~(% (* (+ (/ '(set "<>:\"/\\|?*") "_") '2))))) (defn repo-id "Convert a repo url into a path component that serves as its id."