diff --git a/README.md b/README.md index d612f40..a315d35 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/lib/commands/self/update.dart b/lib/commands/self/update.dart index e75f610..596059c 100644 --- a/lib/commands/self/update.dart +++ b/lib/commands/self/update.dart @@ -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( diff --git a/website/docs/getting-started.md b/website/docs/getting-started.md index b488a3b..39c460f 100644 --- a/website/docs/getting-started.md +++ b/website/docs/getting-started.md @@ -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