kennethreitz/bake

Feature Request --force -f

Open

#7 opened on Sep 19, 2019

View on GitHub
 (2 comments) (0 reactions) (0 assignees)Python (24 forks)github user discovery
enhancementgood first issue

Repository metrics

Stars
 (638 stars)
PR merge metrics
 (PR metrics pending)

Description

Please add a --force flag to force task to run even if hash has not changed on a task with a @skip:key

$bake install
 + Executing @skip(key=requirements.txt):
 + Skipping install/python.
 + Executing install:
 + Done.

$bake install --force
 + Executing install/python:
  .
  .
  .
 + Executing install:
 + Done.

Contributor guide