From a619051b467971aebcaff0c2c2c6429fead50e12 Mon Sep 17 00:00:00 2001 From: Krzysztof Morcinek Date: Thu, 9 Mar 2017 15:07:35 +0100 Subject: [PATCH] Update readme: module import is safer than "dot sourcing" --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 0a3a68b..45f6cb1 100644 --- a/readme.md +++ b/readme.md @@ -24,7 +24,7 @@ SolutionScripts looks for (or creates) a directory called `SolutionScripts` at t It looks in that directory for ps1 files. If any exist, it [dot sources](http://technet.microsoft.com/en-us/library/ee176949.aspx#ECAA) them. -It also looks for psm1 files (modules). If any exist, init will [import](http://technet.microsoft.com/en-us/library/dd819454.aspx) them. +It also looks for psm1 files (modules). If any exist, init will [import](http://technet.microsoft.com/en-us/library/dd819454.aspx) them. (this is prefered way over ps1 files - [example](http://stackoverflow.com/a/6040725)) What else? ---