Loading tools/relprep.py +3 −1 Original line number Diff line number Diff line Loading @@ -396,7 +396,9 @@ class ReleasePreparation: logger.debug("No need to update the %s extension.", name) return input_["URL"] = url path = self.base_path / "out/browser" / url.split("/")[-1] path = self.base_path / "out/browser" path.mkdir(parents=True, exist_ok=True) path /= url.split("/")[-1] # The extension should be small enough to easily fit in memory :) if not path.exists(): r = requests.get(url) Loading Loading
tools/relprep.py +3 −1 Original line number Diff line number Diff line Loading @@ -396,7 +396,9 @@ class ReleasePreparation: logger.debug("No need to update the %s extension.", name) return input_["URL"] = url path = self.base_path / "out/browser" / url.split("/")[-1] path = self.base_path / "out/browser" path.mkdir(parents=True, exist_ok=True) path /= url.split("/")[-1] # The extension should be small enough to easily fit in memory :) if not path.exists(): r = requests.get(url) Loading