1
0
Fork 0
setup-script-py/src/setup/dev/rust.py
developomp 65fea2ec89 replace run with system
- hiding stdout ain't helpful 99% of the time like I have to go
  "why the fuck is this shit hanging?" and have to guess if it's
  even doing shit
2022-11-07 17:30:27 +09:00

12 lines
195 B
Python

from src.util import paru_install
from os import system
name = "rust"
def setup():
"""C++ but modern"""
paru_install(["rustup", "rust-analyzer"])
system("rustup install stable")