srlowe
srlowe
OS: Ubuntu 19.10 Kernel: 5.3.0-20-generic ``` $ make && sudo make install make -C /lib/modules/5.3.0-20-generic/build M=/home/xxx/osmods/acpi_call modules make[1]: Entering directory '/usr/src/linux-headers-5.3.0-20-generic' CC [M] /home/xxx/osmods/acpi_call/acpi_call.o In file included from ./include/acpi/platform/acenv.h:152, from...
This PR updates all the commands that output tabular data to use the new output framework (behind v14 flag). The output framework has been updated to include extra features that...
Currently `env rm` only accepts integer DB IDs for fleet/device. Should be modified to accept fleet names/slugs and device uuids (long/short). Related: https://github.com/balena-io/balena-cli/issues/2184 https://github.com/balena-io/balena-cli/issues/1957
When doing `balena push` in local mode using the .local device address, the first step (GET call to /ping) fails with `Could not communicate with local mode device at address...
Auto-generate command usage notes. Allow manual overriding.
When calling `models.application.purge` with a uknown app id, the SDK throws `BalenaRequestError: Request error: No online device(s) found`. ## Expected Behavior Should throw `BalenaApplicationNotFound` ## Actual Behavior Throws `BalenaRequestError: Request...
`oclif-dev pack:deb` generates `chown/chgrp` permission errors. Is this command intended to be run with sudo / as root? These appear to be the relevant lines: https://github.com/oclif/dev-cli/blob/master/src/commands/pack/deb.ts#L82-L83
``` const data = [ { a: 'a', b: [ 'b1', 'b2' ] } ] console.log(JSON.stringify(data, null, 2)) cli.table( data, ['a', 'b'], {output: 'json'} ); ``` Output: ``` [ {...
``` const data = [{ name: 'bob', age: 32, }]; console.log(JSON.stringify(data, undefined, 2)); cli.table(data, { name: {}, age: {}, }, {output: 'json'}); ``` Output: ``` [ { "name": "bob", "age":...