@@ -7,13 +7,13 @@ If you have Pode's source code checked out locally on your machine, you can foll
77
881 . Install InvokeBuild Module
99
10- ### Using Powershell Gallery
10+ ### Using Powershell Gallery
1111
1212 ``` powershell
1313 Install-Module InvokeBuild -Scope CurrentUser
1414 ```
1515
16- ### Using Chocolatey
16+ ### Using Chocolatey
1717
1818 ```powershell
1919 choco install invoke-build
@@ -52,11 +52,11 @@ If you have Pode's source code checked out locally on your machine, you can foll
5252 ```
5353
5454 To uninstall, use:
55+
5556 ```powershell
5657 Invoke-Build Remove-Module
5758 ```
5859
59-
60606. CleanUp
6161
6262 To clean up after a build or a pack, run the following:
@@ -65,38 +65,39 @@ If you have Pode's source code checked out locally on your machine, you can foll
6565 Invoke-Build clean
6666 ```
6767
68- ## Linux
68+ ### Linux
6969
70701. Register the Microsoft Repository
7171
7272 #### CentOS
73+
7374 ```shell
7475 sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
7576 sudo curl -o /etc/yum.repos.d/microsoft.repo https://packages.microsoft.com/config/centos/8/prod.repo
7677 ```
7778
7879 #### RedHat
80+
7981 ```shell
8082 sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
8183 sudo curl -o /etc/yum.repos.d/microsoft.repo https://packages.microsoft.com/config/rhel/9/prod.repo
8284 ```
8385
8486 #### Debian / Ubuntu
87+
8588 ```shell
8689 sudo apt-get update
8790 sudo apt-get install -y wget apt-transport-https software-properties-common
8891 wget https://packages.microsoft.com/config/debian/$(lsb_release -rs)/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
8992 sudo apt-get update;
9093 ```
9194
92-
93952. Install InvokeBuild Module
9496
9597 ```powershell
9698 Install-Module InvokeBuild -Scope CurrentUser
9799 ```
98100
99-
1001013. Test
101102
102103 To run the unit tests, run the following command from the root of the repository (this will build Pode and, if needed, auto-install Pester/.NET):
@@ -135,7 +136,6 @@ If you have Pode's source code checked out locally on your machine, you can foll
135136 Invoke-Build Remove-Module
136137 ```
137138
138-
139139## MacOS
140140
141141An easy way to install the required components is to use [brew](https://brew.sh/):
0 commit comments