ZPM: install vs install -dev
Hello, I'm developing a custom ZPM package and debugging the installer.
In default mode (zpm install
), the process terminates with the following error:
ERROR! : <COMMAND>LoadNewModule+133^%ZPM.PackageManager.Developer.Utils.1 *NoTransaction
With the -dev flag (zpm install -dev
) everything works fine.
What could be the problem?
Product version: IRIS 2023.2
Usually, you get a <COMMAND> error, if you call a (class)method as an expression but the called method does not provide a value
Method SomethingErr() { write "Hello" } Method SomethingOk() { quit "Hello" } do ..SomethingErr() // this is OK do ..SomethingOK() // this is OK write ..SomethingErr() // gives a <COMMAND> error write ..SomethingOK() // is OK
Interesting... I'm actively using the Write method, but for emitting console messages using constant strings. Anyway, thanks