Skip to content

Commit

Permalink
🔧 chore: rename default branch to 'stable'
Browse files Browse the repository at this point in the history
  • Loading branch information
srinivasayush committed Jul 28, 2021
1 parent fca93cf commit acf669e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ Docrunner goes through your markdown file and runs any code in it, providing you

Shell (Mac, Linux):
```shell
curl -fsSL https://raw.githubusercontent.com/DudeBro249/docrunner/dev/installers/install.sh | sh
curl -fsSL https://raw.githubusercontent.com/DudeBro249/docrunner/stable/installers/install.sh | sh
```

Powershell(Windows):
```powershell
iwr -useb https://raw.githubusercontent.com/DudeBro249/docrunner/dev/installers/install.ps1 | iex
iwr -useb https://raw.githubusercontent.com/DudeBro249/docrunner/stable/installers/install.ps1 | iex
```

If none of these methods work, you can also install `docrunner.exe` from
Expand Down
4 changes: 2 additions & 2 deletions lib/commands/self/update.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ class UpdateCommand extends Command {
var outputMessage = 'Copy and paste this command into your terminal: ';
if (Platform.isWindows) {
installationCommand =
'iwr -useb https://raw.githubusercontent.com/DudeBro249/docrunner/dev/installers/install.ps1 | iex';
'iwr -useb https://raw.githubusercontent.com/DudeBro249/docrunner/stable/installers/install.ps1 | iex';
outputMessage =
'Copy and paste this command into your powershell terminal';
} else if (Platform.isMacOS || Platform.isLinux) {
installationCommand =
'curl -fsSL https://raw.githubusercontent.com/DudeBro249/docrunner/dev/installers/install.sh | sh';
'curl -fsSL https://raw.githubusercontent.com/DudeBro249/docrunner/stable/installers/install.sh | sh';
}

stdout.writeln(
Expand Down
4 changes: 2 additions & 2 deletions website/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

Shell (Mac, Linux):
```shell
curl -fsSL https://raw.githubusercontent.com/DudeBro249/docrunner/dev/installers/install.sh | sh
curl -fsSL https://raw.githubusercontent.com/DudeBro249/docrunner/stable/installers/install.sh | sh
```

Powershell(Windows):
```powershell
iwr -useb https://raw.githubusercontent.com/DudeBro249/docrunner/dev/installers/install.ps1 | iex
iwr -useb https://raw.githubusercontent.com/DudeBro249/docrunner/stable/installers/install.ps1 | iex
```

If none of these methods work, you can also install `docrunner.exe` from
Expand Down

0 comments on commit acf669e

Please sign in to comment.