Hi there! When executing this code: ```export cons...
# typescript
a
Hi there! When executing this code:
Copy code
export const generateSigningJob = (
  signingProfile: aws.signer.GetSigningProfileResult,
  bucket: aws.s3.Bucket
) => {
  const signingJob = new aws.signer.SigningJob("signing-job", {
    source: {
      s3: {
        bucket: bucket.bucket,
        key: "cove_fw.bin",
        version: "ynjaE4qqt_.w7V0F_0OzuARKk2586Fuy",
      },
    },
    destination: {
      s3: {
        bucket: bucket.bucket,
        prefix: "SignedImages/",
      },
    },
    profileName: "evcsigningprofile",
    ignoreSigningJobFailure: false,
  });
  return signingJob;
};
I get a SIGSEGV
Untitled
b
could you file an issue?
a
Done.