blob: 72495f412c30c10e0925f930cca7ff30af6830b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import os
import pathlib
import shutil
import httpx
def setup_ubpkg():
ubpkg = pathlib.Path.home() / ".local" / "bin" / "ubpkg"
ubpkg.write_bytes(httpx.get("https://github.com/alexpdp7/ubpkg/releases/latest/download/ubpkg-linux", follow_redirects=True).content)
os.chmod(ubpkg, 0o700)
|