We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c40d60 commit 01555bcCopy full SHA for 01555bc
pspy_installer/common.py
@@ -0,0 +1,2 @@
1
+from pathlib import Path
2
+out_path = Path('~/.pspy/bin').expanduser()
pspy_installer/install_binary.py
@@ -4,11 +4,11 @@
4
import requests
5
import zipfile
6
import stat
7
-from pathlib import Path
+from pspy_installer.common import out_path
8
from distutils.util import get_platform
9
10
tag = re.compile('refs/tags/v(\S+)')
11
-out_path = Path('~/.local/bin').expanduser()
+
12
13
14
def make_executable(cmd_path):
pspy_installer/proxy.py
@@ -1,7 +1,7 @@
from pathlib import Path
from subprocess import call
3
import sys
def main():
0 commit comments