This commit is contained in:
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/python3
|
||||
import sys
|
||||
import os
|
||||
|
||||
# Allow forcing Python fallback with env var
|
||||
if os.environ.get('HYFETCH_PY'):
|
||||
from hyfetch.py import run_py
|
||||
run_py()
|
||||
else:
|
||||
from hyfetch.__main__ import run_rust
|
||||
run_rust()
|
||||
Reference in New Issue
Block a user