Skip to content

Commit

Permalink
fix: output config file name when passed --config
Browse files Browse the repository at this point in the history
  • Loading branch information
wkillerud committed Oct 17, 2024
1 parent 3cacee4 commit fdb045b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion commands/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export const handler = commandHandler(
out,
files,
type,
configFile,
} = argv;

if (type === "map") {
Expand Down Expand Up @@ -76,7 +77,7 @@ export const handler = commandHandler(
if (!publish) {
throw new EikCliError(
errors.ERR_VERSION_EXISTS,
"Version in eik.json has not changed since last publish, publishing is not necessary",
`Version in ${configFile} has not changed since last publish, publishing is not necessary`,
);
}

Expand Down

0 comments on commit fdb045b

Please sign in to comment.