abelsiqueira / BestieTemplate.jl

Template for Julia Programming Language packages using the copier engine.
http://abelsiqueira.com/BestieTemplate.jl/
Mozilla Public License 2.0
42 stars 9 forks source link

[Bug] Workflow TestGeneratedPkg is failing #322

Closed abelsiqueira closed 3 months ago

abelsiqueira commented 3 months ago

Description

https://github.com/abelsiqueira/BestieTemplate.jl/actions/runs/9791208002

Package Version

NA

Julia Version

NA

Reproduction steps

https://github.com/abelsiqueira/BestieTemplate.jl/actions/runs/9791208002

Relevant log output

No response

Operating System

No response

suvayu commented 3 months ago

The failure is strange since I was expecting failure would print out the names of the files that are missing (output of ... | grep missing). Maybe some other kind of error is happening?

suvayu commented 3 months ago

Found it! It's because the shell is invoked as bash -e, which always fails whenever a command fails; see (bash) The Set Builtin! We need a different way to detect this :thinking: