Skip to content

Commit ce2e546

Browse files
committed
Fix workflow
1 parent 2e52e88 commit ce2e546

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
path: ./dist/YTPMVE_UI.exe
3131
- name: Create zip file for pre-release
3232
run: |
33-
move ./dist/YTPMVE.exe .
33+
move ./dist/YTPMVE_UI.exe .
3434
mkdir YTPMVE
3535
Get-Content .\installfiles.txt | foreach { mv $_ .\YTPMVE}
3636
Compress-Archive .\YTPMVE YTPMVE-$(((get-date).ToUniversalTime()).ToString("yyyyMMdd-HHmmss")).zip

YTPMVE.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public void FromVegas(Vegas vegas)
241241

242242
string path = vegas.InstallationDirectory + "\\.." + "\\YTPMVE\\";//Full path to engine files included with the installation of YTPMVE.
243243
string py_file_path = "\"" + path + "YTPMVE_UI.py" + "\"";
244-
string exe_file_path = "\"" + path + "YTPMVE.exe" + "\"";
244+
string exe_file_path = "\"" + path + "YTPMVE_UI.exe" + "\"";
245245

246246

247247
/*CHANGE THIS LINE TO CONTROL WHETHER THE EXECUTABLE OR PYTHON VERSION IS USED*/

0 commit comments

Comments
 (0)