That feeling when you fix a bug that’s been open a year and the fix is literally just adding two characters in one place and two characters in another.
@lascapi It was the Kitten process crashing when you built and installed a new version of Kitten. Basically came down to not removing the folder the Kitten process was running in but its contents instead. (Node processes crash if their cwd is deleted by another process.) The fix was to add /* to the end of the rm -rf and :? to the path string interpolation so as not to accidentally nuke the system. Now Kitten simply restarts with the new version :)