Skip to content

Commit

Permalink
build: when extracting the k/kore-cell fails print the input file
Browse files Browse the repository at this point in the history
  • Loading branch information
nishantjr committed Jun 28, 2019
1 parent 5e3f0d4 commit 5c8494a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ proj = KProject()

kore_from_config = proj.rule( 'kore-from-config'
, description = 'kore-from-config: $in'
, command = 'lib/kore-from-config "$in" "$out"'
, command = 'lib/kore-from-config "$in" "$out" || (cat "$in" ; false)'
, ext = 'kore'
)
k_from_config = proj.rule( 'k-from-config'
, description = 'k-from-config'
, command = 'lib/k-from-config "$in" "$out"'
, command = 'lib/k-from-config "$in" "$out" || (cat "$in" ; false)'
, ext = 'kore'
)
def kore_exec(kore, ext = 'kore-exec'):
Expand Down

0 comments on commit 5c8494a

Please sign in to comment.