File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ ls -al | tee -a ${LOG_FILE}
45
45
# jar xvf "${BUILD_ZIP_FILE}" | tee -a ${LOG_FILE}
46
46
47
47
# Fix for M4 chips being unable to execute the jar command
48
- dnf install zip unzip -y | tee -a ${LOG_FILE}
48
+ dnf install unzip -y | tee -a ${LOG_FILE}
49
49
unzip -o " ${BUILD_ZIP_FILE} " -d " ${HAPI_DIR} " | tee -a ${LOG_FILE}
50
50
[[ $? -ne 0 ]] && echo " Failure occurred during decompress" && exit 1
51
51
echo " ................................end: extract-platform.sh" | tee -a ${LOG_FILE}
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ AddToFileList ${KEYS_DIR}
50
50
AddToFileList ${UPGRADE_DIR}
51
51
echo " creating zip file" | tee -a ${LOG_FILE}
52
52
# jar cvfM "${ZIP_FULLPATH}" "@${FILE_LIST}"
53
+ dnf install zip -y | tee -a ${LOG_FILE}
53
54
zip " ${ZIP_FULLPATH} " -@ < " ${FILE_LIST} " | tee -a ${LOG_FILE}
54
55
echo " ...end support-zip.sh" | tee -a ${LOG_FILE}
55
56
# jar -u -v --file=${ZIP_FULLPATH} ${OUTPUT_DIR}/support-zip.log
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import * as fs from 'node:fs';
16
16
import * as yaml from 'yaml' ;
17
17
import { PathEx } from '../../../src/business/utils/path-ex.js' ;
18
18
import { SoloWinstonLogger } from '../../../src/core/logging/solo-winston-logger.js' ;
19
+ import { resetForTest } from '../../test-container.js' ;
19
20
20
21
describe ( 'ClusterCommand' , ( ) => {
21
22
// mock showUser and showJSON to silent logging during tests
@@ -66,6 +67,7 @@ describe('ClusterCommand', () => {
66
67
} ) ;
67
68
68
69
beforeEach ( ( ) => {
70
+ resetForTest ( namespace . name ) ;
69
71
configManager . reset ( ) ;
70
72
} ) ;
71
73
You can’t perform that action at this time.
0 commit comments