jhclark / ducttape

A workflow management system for researchers who heart Unix.
http://jhclark.github.com/ducttape
Other
119 stars 14 forks source link

Specifying a branch point or branch name that does not exist anywhere in the workflow should error #144

Open jhclark opened 11 years ago

jhclark commented 11 years ago

The following fails silently, but should produce an error message:

task t :: (Exists: exists) {}
plan p {
  reach t via (DoesNotExist: branch)
  reach t via (Exists: does_not_exist)
}