mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 22:23:07 +00:00
Merge pull request #1555 from balena-io/american-british
meta: Americanize all spellings
This commit is contained in:
commit
75044030cf
@ -719,7 +719,7 @@ used alongside the --device option to select a device-specific service or
|
||||
configuration variable.
|
||||
|
||||
Interactive confirmation is normally asked before the variable is deleted.
|
||||
The --yes option disables this behaviour.
|
||||
The --yes option disables this behavior.
|
||||
|
||||
Examples:
|
||||
|
||||
@ -1642,7 +1642,7 @@ flags can be used together.
|
||||
When pushing to a local device a live session will be started.
|
||||
The project source folder is watched for filesystem events, and changes
|
||||
to files and folders are automatically synchronized to the running
|
||||
containers. The synchronisation is only in one direction, from this machine to
|
||||
containers. The synchronization is only in one direction, from this machine to
|
||||
the device, and changes made on the device itself may be overwritten.
|
||||
This feature requires a device running supervisor version v9.7.0 or greater.
|
||||
|
||||
@ -1709,7 +1709,7 @@ file from the balena directory will be used (usually $HOME/.balena/secrets.yml|.
|
||||
#### --nolive
|
||||
|
||||
Don't run a live session on this push. The filesystem will not be monitored, and changes
|
||||
will not be synchronised to any running containers. Note that both this flag and --detached
|
||||
will not be synchronized to any running containers. Note that both this flag and --detached
|
||||
and required to cause the process to end once the initial build has completed.
|
||||
|
||||
#### --detached, -d
|
||||
|
2
lib/actions-oclif/env/rm.ts
vendored
2
lib/actions-oclif/env/rm.ts
vendored
@ -44,7 +44,7 @@ export default class EnvRmCmd extends Command {
|
||||
${ec.rmRenameHelp.split('\n').join('\n\t\t')}
|
||||
|
||||
Interactive confirmation is normally asked before the variable is deleted.
|
||||
The --yes option disables this behaviour.
|
||||
The --yes option disables this behavior.
|
||||
`;
|
||||
public static examples = [
|
||||
'$ balena env rm 123123',
|
||||
|
@ -111,7 +111,7 @@ offerToDisableAutomaticUpdates = (application, commit, pinDevice) ->
|
||||
message = '''
|
||||
|
||||
This application is set to automatically update all devices to the current version.
|
||||
This might be unexpected behaviour: with this enabled, the preloaded device will still
|
||||
This might be unexpected behavior: with this enabled, the preloaded device will still
|
||||
download and install the current release once it is online.
|
||||
|
||||
Do you want to disable automatic updates for this application?
|
||||
|
@ -142,7 +142,7 @@ export const push: CommandDefinition<
|
||||
When pushing to a local device a live session will be started.
|
||||
The project source folder is watched for filesystem events, and changes
|
||||
to files and folders are automatically synchronized to the running
|
||||
containers. The synchronisation is only in one direction, from this machine to
|
||||
containers. The synchronization is only in one direction, from this machine to
|
||||
the device, and changes made on the device itself may be overwritten.
|
||||
This feature requires a device running supervisor version v9.7.0 or greater.
|
||||
|
||||
@ -203,7 +203,7 @@ export const push: CommandDefinition<
|
||||
boolean: true,
|
||||
description: stripIndent`
|
||||
Don't run a live session on this push. The filesystem will not be monitored, and changes
|
||||
will not be synchronised to any running containers. Note that both this flag and --detached
|
||||
will not be synchronized to any running containers. Note that both this flag and --detached
|
||||
and required to cause the process to end once the initial build has completed.`,
|
||||
},
|
||||
{
|
||||
|
@ -48,7 +48,7 @@ function checkNodeVersion() {
|
||||
Warning: Node version "${
|
||||
process.version
|
||||
}" does not match required versions "${validNodeVersions}".
|
||||
This may cause unexpected behaviour. To upgrade Node, visit:
|
||||
This may cause unexpected behavior. To upgrade Node, visit:
|
||||
https://nodejs.org/en/download/
|
||||
------------------------------------------------------------------------------
|
||||
`);
|
||||
|
@ -19,7 +19,7 @@ import { stripIndent } from 'common-tags';
|
||||
import { exitWithExpectedError } from './utils/patterns';
|
||||
|
||||
export interface AppOptions {
|
||||
// Prevent the default behaviour of flushing stdout after running a command
|
||||
// Prevent the default behavior of flushing stdout after running a command
|
||||
noFlush?: boolean;
|
||||
}
|
||||
|
||||
|
@ -47,7 +47,7 @@ export class BalenaAPIMock {
|
||||
this.scope.done();
|
||||
// Remove 'no match' handler, for tests using nock without this module
|
||||
nock.emitter.removeListener('no match', this.handleUnexpectedRequest);
|
||||
// Restore unmocked behaviour
|
||||
// Restore unmocked behavior
|
||||
nock.cleanAll();
|
||||
nock.restore();
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ import { FileIgnorer, IgnoreFileType } from '../../build/utils/ignore';
|
||||
|
||||
// Note that brack notation is used intentionally when accessing private members
|
||||
// of the FileIgnorer class to prevent a Typescript compilation error (this
|
||||
// behaviour is by design: see
|
||||
// behavior is by design: see
|
||||
// https://github.com/microsoft/TypeScript/issues/19335 )
|
||||
describe('File ignorer', function() {
|
||||
it('should detect ignore files', function() {
|
||||
|
Loading…
Reference in New Issue
Block a user