Skip to content

Commit

Permalink
fix: fix marketplace release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
UrazAkgultan committed Aug 15, 2024
1 parent 7322ae1 commit d87952e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release/module-automation/commons.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async function createModuleMpkInDocker(sourceDir, moduleName, mendixVersion, exc
const projectFile = basename((await getFiles(sourceDir, [`.mpr`]))[0]);
await execShellCommand(
`docker run -t -v ${sourceDir}:/source ` +
`--rm mxbuild:${mendixVersion} bash -c "mx update-widgets --loose-version-check /source/${projectFile} && mono /tmp/mxbuild/modeler/mxutil.exe create-module-package ${
`--rm mxbuild:${mendixVersion} bash -c "mx update-widgets --loose-version-check /source/${projectFile} && dotnet /tmp/mxbuild/modeler/mx.dll create-module-package ${
excludeFilesRegExp ? `--exclude-files='${excludeFilesRegExp}'` : ""
} /source/${projectFile} ${moduleName}"`
);
Expand Down

0 comments on commit d87952e

Please sign in to comment.