Skip to content

Instantly share code, notes, and snippets.

View coderespawn's full-sized avatar

Ali Akbar coderespawn

View GitHub Profile
@coderespawn
coderespawn / build53.py
Last active September 26, 2023 02:25
Upgrades and builds the DLSS Unreal Engine Plugin from 5.2 to 5.3
import os
import shutil
import subprocess
# Step 0: Delete 'Plugins_Temp' and 'Plugins_5.3' directories if they exist
if os.path.exists('Plugins_Temp'):
shutil.rmtree('Plugins_Temp')
print('Deleted existing Plugins_Temp directory.')
if os.path.exists('Plugins_5.3'):
shutil.rmtree('Plugins_5.3')