Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pycklets / git_installed.py
Size: Mime:
# -*- 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=[])