File tree 1 file changed +4
-1
lines changed 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import * as os from 'os';
9
9
import * as chalk from 'chalk' ;
10
10
import { flags , FlagsConfig , SfdxCommand } from '@salesforce/command' ;
11
11
import { Messages , SfdxError } from '@salesforce/core' ;
12
+ import { exec } from 'shelljs' ;
12
13
import { PackageInfo } from '../../../repository' ;
13
14
import { verifyDependencies } from '../../../dependencies' ;
14
15
import { Access , isMonoRepo , SinglePackageRepo } from '../../../repository' ;
@@ -144,13 +145,15 @@ export default class Release extends SfdxCommand {
144
145
} ;
145
146
}
146
147
148
+ // eslint-disable-next-line @typescript-eslint/require-await
147
149
protected async verifySign ( pkgInfo : PackageInfo ) : Promise < void > {
148
150
const cmd = 'plugins:trust:verify' ;
149
151
const argv = `--npm ${ pkgInfo . name } @${ pkgInfo . nextVersion } ${ pkgInfo . registryParam } ` ;
150
152
151
153
this . ux . log ( chalk . dim ( `sf-release ${ cmd } ${ argv } ` ) + os . EOL ) ;
152
154
try {
153
- await this . config . runCommand ( cmd , argv . split ( ' ' ) ) ;
155
+ // await this.config.runCommand(cmd, argv.split(' '));
156
+ exec ( `DEBUG=sfdx:* ${ this . config . root } /bin/run ${ cmd } ${ argv } ` ) ;
154
157
} catch ( err ) {
155
158
throw new SfdxError ( err , 'FailedCommandExecution' ) ;
156
159
}
You can’t perform that action at this time.
0 commit comments