Skip to content

Commit

Permalink
fix renaming
Browse files Browse the repository at this point in the history
Signed-off-by: Yevhen Vydolob <[email protected]>
  • Loading branch information
evidolob authored and gbraad committed May 5, 2023
1 parent 3547d22 commit 5a63890
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { commandManager } from './command';
import { registerOpenConsoleCommand } from './crc-console';
import { registerLogInCommands } from './login-commands';
import { defaultLogger } from './logger';
import { moveImageToCrcCluster as pushImageToCrcCluster } from './image-handler';
import { pushImageToCrcCluster } from './image-handler';

const CRC_PUSH_IMAGE_TO_CLUSTER = 'crc.image.push.to.cluster';

Expand Down
2 changes: 1 addition & 1 deletion src/image-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { getPodmanCli } from './podman-cli';

type ImageInfo = { engineId: string; name?: string; tag?: string };

export async function moveImageToCrcCluster(image: ImageInfo): Promise<void> {
export async function pushImageToCrcCluster(image: ImageInfo): Promise<void> {
if (!image.name) {
throw new Error('Image selection not supported yet');
}
Expand Down

0 comments on commit 5a63890

Please sign in to comment.