Git Product home page Git Product logo

Comments (2)

colindean avatar colindean commented on July 23, 2024 2

That hidden abstraction layer is wonderful and one of the things I really like about the tool.

I think this check could be achieved through the use of which , which the shutil built-in has in shutil.which():

import shutil

def is_utility_available(cmd):
  return shutil.which(cmd) is not None

def require_git():
  if not is_utility_available("git"):
    raise MissingUtilityException("git is unavailable. Please install git and re-run your command.")

Drop require_git() early into any path that will need git and the user who forgot git will love the helpful error message instead of a FileNotFoundError or whatever is thrown with a long traceback.

from peru.

oconnor663 avatar oconnor663 commented on July 23, 2024 1

The main reason we haven't done something like this already is that peru tries pretty hard to keep itself to a single external invocation of the git binary in the happy path. So like if you run peru sync it does a tun a work and runs a bunch of commands. But if you run peru sync again, it does very little. Currently only a single command to check the status of the tree. This is an imporant part of the "put peru sync in your Makefile or at the top of your Bash script and then forget about it" strategy.

So if checking for git meant shelling out to git --version or similar, that wouldn't be ideal. Is there another way of checking that you had in mind?

from peru.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.