Post Build Step not running

I’m trying to do a post build step, similar to what’s described here.

My build works, however the post build step doesn’t appear to have run. I can find a batch file generated in the build called PostBuild-1.bat, and when I run that batch file manually it works. However, as far as I can tell, it’s not actually run in the build process.

I’m stuck - any help much appreciated.

1 Like

I ran into this issue as well too.

For future lurkers, my mistake was not having the keyword “call”. So it should be something like:

"PreBuildSteps": {
		"Win64": [
		"call \"$(PluginDir)\\Test.bat\""
		]
	}
1 Like

Have you sorted it? Im facing the same issue now