in scripts/ebcli_installer.py [0:0]
def _bat_script_body(virtualenv_location):
"""
Function returns a CMD Prompt (bat) script which essentially will
wrap the `eb` executable such that the executable is invoked within
the virtualenv, ".ebcli-virtual-env", created apriori.
:param virtualenv_location: the relative or absolute path to the location
where the virtualenv, ".ebcli-virtual-env", was
created.
:return: None
"""
return EXECUTABLE_WRAPPERS['bat'].format(
bin_location=_original_eb_location(virtualenv_location)
)