You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
489 B
16 lines
489 B
#!/bin/bash |
|
# Bash script to create the Vulkan Runtime Installer. |
|
|
|
# Create the uinstaller |
|
makensis /DUNINSTALLER InstallerRT.nsi |
|
$TEMP/tempinstaller.exe |
|
mv $TEMP/UninstallVulkanRT.exe . |
|
|
|
# Sign the Uninstaller |
|
# Replace SIGNFILE with your command and necessary args for |
|
# signing an executable. If you don't need to sign the uninstaller, |
|
# you can comment out this line. |
|
./SIGNFILE ./UninstallVulkanRT.exe |
|
|
|
# Create the RT Installer, using the signed uninstaller |
|
makensis InstallerRT.nsi
|
|
|