Skip to content

Commit

Permalink
fix Distribution build dir creation
Browse files Browse the repository at this point in the history
  • Loading branch information
sebdelsol committed Feb 23, 2024
1 parent ac46c70 commit d08ab52
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

[^1]: External EPG doesn't work with **local** m3u accounts.
# Download
[<img src="https://custom-icon-badges.demolab.com/badge/Sfvip All v1.4.12.29 x64-informational.svg?logo=download-cloud&logoSource=feather&logoColor=white&style=flat-square" height="30"><img src="https://custom-icon-badges.demolab.com/badge/clean-brightgreen.svg?logo=shield-check&logoColor=white&style=flat-square" height="30">](https://github.com/sebdelsol/sfvip-all/raw/master/build/1.4.12.29/x64/Install%20Sfvip%20All.exe)
[<img src="https://custom-icon-badges.demolab.com/badge/Sfvip All v1.4.12.29 x64-informational.svg?logo=download-cloud&logoSource=feather&logoColor=white&style=flat-square" height="30"><img src="https://custom-icon-badges.demolab.com/badge/clean-brightgreen.svg?logo=shield-check&logoColor=white&style=flat-square" height="30">](https://github.com/sebdelsol/sfvip-all/releases/download/v1.4.12.29/Install.Sfvip.All.x64.exe)
<sub><sup>_by Microsoft Defender • 1.1.24010.10 • 1.405.9.0_</sup></sub>

[<img src="https://custom-icon-badges.demolab.com/badge/Sfvip All v1.4.12.29 x86-informational.svg?logo=download-cloud&logoSource=feather&logoColor=white&style=flat-square" height="30"><img src="https://custom-icon-badges.demolab.com/badge/clean-brightgreen.svg?logo=shield-check&logoColor=white&style=flat-square" height="30">](https://github.com/sebdelsol/sfvip-all/raw/master/build/1.4.12.29/x86/Install%20Sfvip%20All.exe)
[<img src="https://custom-icon-badges.demolab.com/badge/Sfvip All v1.4.12.29 x86-informational.svg?logo=download-cloud&logoSource=feather&logoColor=white&style=flat-square" height="30"><img src="https://custom-icon-badges.demolab.com/badge/clean-brightgreen.svg?logo=shield-check&logoColor=white&style=flat-square" height="30">](https://github.com/sebdelsol/sfvip-all/releases/download/v1.4.12.29/Install.Sfvip.All.x86.exe)
<sub><sup>_by Microsoft Defender • 1.1.24010.10 • 1.405.9.0_</sup></sub>

Check the [***changelog***](build/changelog.md) and ***notes***[^2].
Expand Down
4 changes: 2 additions & 2 deletions build/update_x64.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"url": "https://github.com/sebdelsol/sfvip-all/raw/master/build/1.4.12.29/x64/Install%20Sfvip%20All.exe",
"url": "https://github.com/sebdelsol/sfvip-all/releases/download/v1.4.12.29/Install.Sfvip.All.x64.exe",
"md5": "1dbce314bf357e5104df5cb67eda0b89",
"version": "1.4.12.29"
}
}
2 changes: 1 addition & 1 deletion dev/tools/builder/distribution.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def run(self, python_env: PythonEnv) -> bool:
if self.do_run:
print(Title(f"Build with {self.name}"), Ok(python_env.package_version(self.name)))
build_dir = self.dist.build_dir(python_env) / self.name.lower()
build_dir.mkdir(exist_ok=True)
build_dir.mkdir(exist_ok=True, parents=True)
built_dist = self.create(python_env.exe, build_dir)
if built_dist is None:
return False
Expand Down

0 comments on commit d08ab52

Please sign in to comment.