()
| 100 | printc(GREEN, f"Installing extension...") |
| 101 | |
| 102 | def create_link(): |
| 103 | os.symlink(os.path.realpath(dist_dir), install_path) |
| 104 | |
| 105 | # Check if material-shell is already installed |
| 106 | # Note that os.path.exists returns false if a symlink exists at the path, but it is broken. So we need to check islink too. |