From d7388b9846edbba7f46bfd3293cef7ff6b215221 Mon Sep 17 00:00:00 2001 From: David Pinedo Date: Thu, 3 Mar 2016 21:25:45 -0700 Subject: winrtinstaller: sign uninstaller --- windowsRuntimeInstaller/CreateInstallerRT.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 windowsRuntimeInstaller/CreateInstallerRT.sh (limited to 'windowsRuntimeInstaller/CreateInstallerRT.sh') 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 -- cgit v1.2.3