Hi all,
I have a script that I’m using to upload to Itch.io after a build processes. It works perfectly on Windows, and works on OSX (it uploads), however it doesn’t open a Terminal window to actually show the upload’s progress. (On Windows it opens a CMD window.)
Here is the code I’m using:
Process uploadProc = new Process {
StartInfo = {
FileName = butlerPath,
Arguments = "push \"" + projectFolder + "\" " + Settings.ItchURLUserName + "/" + Settings.ItchURLProjectName + ":" + "osx",
CreateNoWindow = false,
WindowStyle = ProcessWindowStyle.Normal,
UseShellExecute = false
}
};
uploadProc.Start();
So like I said, it does eventually upload. I just have no idea at what stage it is while it’s doing it. I tried to run Terminal instead (which does open a window), but I couldn’t figure out how to run the Unix executable using C# through the Terminal process.
Any help is greatly appreciated!