From d158b1b8f6d57494c1004093625df7a0c6c21a19 Mon Sep 17 00:00:00 2001 From: MTRNord Date: Mon, 2 Oct 2017 21:49:00 +0200 Subject: [PATCH] fix syntax errors 2 --- deploy/installer/gui/installscript.qs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/installer/gui/installscript.qs b/deploy/installer/gui/installscript.qs index df45d91f..4e964214 100644 --- a/deploy/installer/gui/installscript.qs +++ b/deploy/installer/gui/installscript.qs @@ -29,9 +29,9 @@ Component.prototype.createOperations = function() */ if( installer.isUninstaller() ) { - component.addElevatedOperation("Execute","echo do nothing","UNDOEXECUTE","cmd /C reg delete "HKEY_CURRENT_USER\Software\nheko\nheko\font" /f"); - component.addElevatedOperation("Execute","echo do nothing","UNDOEXECUTE","cmd /C reg delete "HKEY_CURRENT_USER\Software\nheko\nheko\notifications" /f"); - component.addElevatedOperation("Execute","echo do nothing","UNDOEXECUTE","cmd /C reg delete "HKEY_CURRENT_USER\Software\nheko\nheko\window" /f"); + component.addElevatedOperation("Execute","echo do nothing","UNDOEXECUTE","cmd /C reg delete HKEY_CURRENT_USER\Software\nheko\nheko\font /f"); + component.addElevatedOperation("Execute","echo do nothing","UNDOEXECUTE","cmd /C reg delete HKEY_CURRENT_USER\Software\nheko\nheko\notifications /f"); + component.addElevatedOperation("Execute","echo do nothing","UNDOEXECUTE","cmd /C reg delete HKEY_CURRENT_USER\Software\nheko\nheko\window /f"); if( installer.environmentVariable("LOCALAPPDATA") != "" ) { component.addElevatedOperation("Execute","echo do nothing","UNDOEXECUTE","cmd /C rmdir "%LOCALAPPDATA%\nheko" /f");