Skip to content

Commit

Permalink
add response logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonstyle committed Oct 9, 2023
1 parent 5cde01b commit df75998
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion package/src/common/archive-binary-dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,15 @@ export async function archiveBinaryDependency(

// Sync to S3
info(`Copying to ${dependencyAwsPath}\n`);
await s3cmd("cp", [
const result = await s3cmd("cp", [
localPath,
dependencyAwsPath,
"--acl",
"public-read",
]);

info(`(Reponse): ${result}`);

} else {
info(`${dependencyAwsPath} already archived.`);
}
Expand Down

0 comments on commit df75998

Please sign in to comment.