You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ReadMe.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,20 +32,26 @@ cd Modulebuilder
32
32
33
33
#### 2. Install dependencies
34
34
35
-
PowerShellGet has problems updating modules, and the sheer number of parameters needed to do so without errors and warnings is ridiculous, so we use PSDepend. If you don't have PSDepend, _you'll need to install it_ first. Run the `.\bootstrap.ps1` script --it defaults to CurrentUser scope, but has a `-Scope`switch should youwant to change it.
35
+
We have a few modules which are required for building. They're listed in `RequiredModules.psd1` -- the `.\bootstrap.ps1` script installs them (it defaults to CurrentUser scope, but has a `-Scope`parameter if you're running elevated and want to install them for the `AllUsers`). They only change rarely, so you won't need to run this repeatedly.
36
36
37
37
```powershell
38
38
.\bootstrap.ps1
39
39
```
40
40
41
41
#### 3. Run the `build.ps1` script.
42
42
43
-
If you want to avoid installing these _additional_ dependencies (i.e. my Configuration module, and Pester 4.4.0+) in your user scope, you can add the `-UseLocalTools` switch to make sure they are only downloaded to a local "Tools" folder.
0 commit comments