2
0
Fork 0
mirror of https://github.com/redhat-actions/buildah-build.git synced 2025-06-27 16:25:53 +00:00
This commit is contained in:
Sebastian Grabowski 2024-04-27 00:42:36 +02:00 committed by GitHub
commit 3f89eea9e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View file

@ -146,7 +146,7 @@ export class BuildahCli implements Buildah {
core.debug("config");
core.debug(container);
const args: string[] = [ "config" ];
if (settings.entrypoint) {
if (settings.entrypoint && settings.entrypoint.length > 0) {
args.push("--entrypoint");
args.push(BuildahCli.convertArrayToStringArg(settings.entrypoint));
}