github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/internal/tiltfile/api/sys/__init__.py (about) 1 from typing import List 2 3 argv: List[str] = [] 4 """The list of command line arguments passed to Tilt on start. 5 6 `argv[0]` is the Tilt binary name. 7 """ 8 9 executable: str = "" 10 """A string giving the absolute path of the Tilt binary. 11 12 Based on how Tilt was originally invoked. There is no guarantee that 13 the path is still pointing to a valid Tilt binary. If the path has 14 a symlink, the behavior is operating system dependent. 15 """