Skip to content

Commit

Permalink
chore: change perms on pepr package artifact generated
Browse files Browse the repository at this point in the history
Signed-off-by: Case Wylie <[email protected]>
  • Loading branch information
cmwylie19 committed Feb 26, 2025
1 parent d4ba712 commit 352c57c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions hack/load.cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,19 @@ program
let KUBECONFIG = result.stdout.join("").trim();
log(result, "");

log(`Change perms on the Pepr package artifact`);
cmd = new Cmd({
cmd: `chmod 711 ${worktgz}`,
cwd: workdir,
});
log({ cmd: cmd.cmd, cwd: cmd.cwd });
try {
log(await cmd.run(), "");
} catch (e) {
console.error(e);
process.exit(1);
}

log(`Deploy Pepr controller into test cluster`);
let env = { KUBECONFIG };
cmd = new Cmd({
Expand Down

0 comments on commit 352c57c

Please sign in to comment.