blob: 22c90c382718d2ef4d3ed55bcaf651af6f517200 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from __future__ import absolute_import, unicode_literals
from virtualenv.util.path import Path
from ..via_template import ViaTemplateActivator
class BashActivator(ViaTemplateActivator):
def templates(self):
yield Path("activate.sh")
def as_name(self, template):
return template.stem
|