From dae35bbdab59b7b0760bffb326b1f2a57806baac Mon Sep 17 00:00:00 2001 From: Justin Luth Date: Thu, 28 Oct 2021 19:35:22 +0200 Subject: [PATCH] don't hide that we are doing a dot include partial revert of commit a3091bf16eaa92e70ce574fe5e08f2aaf82a8ff The dot is not part of the path. So keep it separate visually. That is the normal syntax that I have seen for dot includes. Merging it into the path hides the distinctive characteristic of a dot include (even for me who always has a dirty monitor). --- Windows10DebloaterGUI.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Windows10DebloaterGUI.ps1 b/Windows10DebloaterGUI.ps1 index d90341a..bcff0c6 100644 --- a/Windows10DebloaterGUI.ps1 +++ b/Windows10DebloaterGUI.ps1 @@ -195,7 +195,7 @@ Function dotInclude() { } if ( test-path $scriptPath\$includeFile ) { # import and immediately execute the requested file - .$scriptPath\$includeFile + . $scriptPath\$includeFile } }