https://bugs.winehq.org/show_bug.cgi?id=33845
--- Comment #30 from maokei rickard.joh@gmail.com --- I used a simple bash script to do the replacement, seem to get the job done:
#!/bin/bash while : do echo "watching to replace"; if [ -e "Launcher.exe.tmp" ]; then mv Launcher.exe.tmp Launcher.exe; echo "Replaced we are all done here!"; exit; fi sleep 0.5; done