Repository URL to install this package:
Version:
1.0.0b1 ▾
|
pycklets
/
git_installed.py
|
---|
# -*- coding: utf-8 -*-
from pyckles import AutoPycklet
class GitInstalled(AutoPycklet):
"""Ensures git is installed.
Currently this only uses the system package manager, which means root permissions are required. In the future also
(at least) a conda install will be supported.
Args:
"""
FRECKLET_ID = "git-installed"
def __init__(self,):
super(GitInstalled, self).__init__(var_names=[])