bake icon indicating copy to clipboard operation
bake copied to clipboard

Feature Request --force -f

Open WaylonWalker opened this issue 6 years ago • 2 comments

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.

WaylonWalker avatar Sep 19 '19 00:09 WaylonWalker

--dont-skip

kennethreitz avatar Sep 19 '19 02:09 kennethreitz

Submitted PR https://github.com/kennethreitz/bake/pull/8

WaylonWalker avatar Sep 19 '19 02:09 WaylonWalker