mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-02-23 18:40:37 +00:00
There were two issues that prevented this command from working correctly: 1- `Promise.delay()` is used, but `Promise` was not imported. 2- The following line had incorrect indentation (spaces instead of tabs): poll().nodeify(done) Therefore CoffeeScript interpreted that the line had to be executed at the end of the `poll()` function, causing `poll()` to never be called.