Skip to content

Commit 66f112d

Browse files
committed
update setup
1 parent 7f63a65 commit 66f112d

3 files changed

Lines changed: 10 additions & 12 deletions

File tree

setup.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,20 @@ def read_files(files):
1919

2020
class InstallBinary(install):
2121
def run(self):
22+
print("installing dotenvx........")
23+
2224
bin_dir = os.path.join(dir, 'src', 'dotenvx', 'bin')
2325
os.makedirs(bin_dir, exist_ok=True)
2426

2527
# install dotenvx binary using your install script into bin/
26-
subprocess.run([
27-
'sh', '-c',
28-
f'curl -sfS "https://dotenvx.sh?directory={bin_dir}" | sh'
29-
], check=True)
28+
subprocess.run(
29+
['sh', '-c', f'curl -sfS "https://dotenvx.sh?directory={bin_dir}" | sh'],
30+
check=True,
31+
stdout=None,
32+
stderr=None
33+
)
34+
35+
print("installed dotenvx........")
3036

3137
super().run()
3238

src/dotenvx/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/dotenvx/__version__.py

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)