Skip to content

Commit

Permalink
Typo in import
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Zeithaml <[email protected]>
  • Loading branch information
Martin-Zeithaml committed Jan 22, 2025
1 parent 382c7e7 commit bfc859d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/commands/support/verify-fingerprints/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ export function execute() {
common.printMessage(`- Find ${commStepName} files`);
const commResult = shell.execOutSync('sh', '-c', `cd '${zoweRuntime}' && comm -${commParameter} "${zoweRuntime}/fingerprint/RefRuntimeHash-${zoweVersion}.txt" "${customHashes}"`);
if (commResult.rc) {
commom.printError(` * Error ZWEL0151E: Failed to compare hashes of fingerprint/RefRuntimeHash-${zoweVersion}.txt and current.`);
commom.printError(` * Exit code: ${commResult.rc}`);
common.printError(` * Error ZWEL0151E: Failed to compare hashes of fingerprint/RefRuntimeHash-${zoweVersion}.txt and current.`);
common.printError(` * Exit code: ${commResult.rc}`);
if (commResult.out) {
commom.printError(` * Output:`);
common.printError(` * Output:`);
common.printError(`${stringlib.paddingLeft(commResult.out, " ")}`);
}
fs.rmrf(allFiles);
Expand Down

0 comments on commit bfc859d

Please sign in to comment.