mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-28 20:08:28 -06:00
Removed the Requirement to Install Python and NodeJS (Now Bundled with Borealis)
This commit is contained in:
10
Dependencies/Python/Lib/venv/__main__.py
vendored
Normal file
10
Dependencies/Python/Lib/venv/__main__.py
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import sys
|
||||
from . import main
|
||||
|
||||
rc = 1
|
||||
try:
|
||||
main()
|
||||
rc = 0
|
||||
except Exception as e:
|
||||
print('Error:', e, file=sys.stderr)
|
||||
sys.exit(rc)
|
Reference in New Issue
Block a user