1#!/bin/bash
2# Bash script to create the Vulkan Runtime Installer.
3
4# Create the uinstaller
5makensis /DUNINSTALLER InstallerRT.nsi
6$TEMP/tempinstaller.exe
7mv $TEMP/UninstallVulkanRT.exe .
8
9# Sign the Uninstaller
10# Replace SIGNFILE with your command and necessary args for
11# signing an executable. If you don't need to sign the uninstaller,
12# you can comment out this line.
13./SIGNFILE ./UninstallVulkanRT.exe
14
15# Create the RT Installer, using the signed uninstaller
16makensis InstallerRT.nsi
17