Changeset 46440b6 in rattail-fabric2
- Timestamp:
- 11/01/2022 06:42:11 PM (3 months ago)
- Branches:
- master
- Children:
- 7ce3aae
- Parents:
- 614fd92
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rattail_fabric2/composer.py
r614fd92 r46440b6 3 3 # 4 4 # Rattail -- Retail Software Framework 5 # Copyright © 2010-20 19Lance Edgar5 # Copyright © 2010-2022 Lance Edgar 6 6 # 7 7 # This file is part of Rattail. … … 25 25 """ 26 26 27 from __future__ import unicode_literals, absolute_import 28 29 from rattail_fabric2 import make_deploy, exists 27 from rattail_fabric2 import apt, make_deploy, exists 30 28 31 29 32 30 deploy = make_deploy(__file__) 31 32 33 def install(c, with_apt=True): 34 if with_apt: 35 apt.install(c, 'composer') 36 else: 37 install_globally(c) 33 38 34 39
Note: See TracChangeset
for help on using the changeset viewer.