diff options
| author | David Pinedo <david@lunarg.com> | 2016-03-03 21:25:45 -0700 |
|---|---|---|
| committer | David Pinedo <david@lunarg.com> | 2016-03-03 21:27:53 -0700 |
| commit | d7388b9846edbba7f46bfd3293cef7ff6b215221 (patch) | |
| tree | f53bdc763dcc86852d21b6f3bfa8a1121da6d751 /windowsRuntimeInstaller/CreateInstallerRT.sh | |
| parent | 3854ab50c35ed110b0ff09c3d79772dd8b5afaed (diff) | |
| download | usermoji-d7388b9846edbba7f46bfd3293cef7ff6b215221.tar.xz | |
winrtinstaller: sign uninstaller
Diffstat (limited to 'windowsRuntimeInstaller/CreateInstallerRT.sh')
| -rw-r--r-- | windowsRuntimeInstaller/CreateInstallerRT.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/windowsRuntimeInstaller/CreateInstallerRT.sh b/windowsRuntimeInstaller/CreateInstallerRT.sh new file mode 100644 index 00000000..f272d98e --- /dev/null +++ b/windowsRuntimeInstaller/CreateInstallerRT.sh @@ -0,0 +1,16 @@ +#!/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 |
