rojo-rbx / remodel

Scriptable Roblox multitool: Manipulate instances, model files, places, and assets on Roblox.com
MIT License
169 stars 38 forks source link

Exit Code 1 should be set if a script fails #88

Open choppedtuna opened 2 years ago

choppedtuna commented 2 years ago

I'm currently trying to use Remodel as part of my GitHub Workflow CI. The existing behaviour is unintended, where the pipeline continues on error even with continue-on-error: false. I believe that instead exit code 1 should occur, resulting in both the step and pipeline failing.

Current work-around: using grep for 'error' and set exit code = 1

image