Merge pull request #1690 from balena-io/remove-code-note

Remove unused code from balena note
This commit is contained in:
srlowe 2020-04-01 16:16:11 +02:00 committed by GitHub
commit f14e44a2e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 10 deletions

View File

@ -1284,10 +1284,6 @@ device UUID
#### --stdin
# OS
## os versions <type>

View File

@ -26,7 +26,6 @@ import { getBalenaSdk } from '../utils/lazy';
interface FlagsDef {
device?: string; // device UUID
dev?: string; // Alias for device.
stdin: boolean;
help: void;
}
@ -51,7 +50,6 @@ export default class NoteCmd extends Command {
public static args = [
{
name: 'note',
// required: true,
description: 'note content',
},
];
@ -64,10 +62,6 @@ export default class NoteCmd extends Command {
exclusive: ['device'],
hidden: true,
}),
// Hack to read stdin with oclif
stdin: flags.boolean({
hidden: true,
}),
help: cf.help,
};