Push with --no-verify

This commit is contained in:
dimitris-am 2024-06-11 13:47:38 +03:00
parent e30bbbb3c9
commit 5190c2ef45
No known key found for this signature in database
GPG key ID: FD12F6141718ABF3

View file

@ -188,7 +188,7 @@ export class GitCommandManager {
} }
async push(options?: string[]): Promise<void> { async push(options?: string[]): Promise<void> {
const args = ['push'] const args = ['push', '--no-verify']
if (options) { if (options) {
args.push(...options) args.push(...options)
} }