From 2fcdc87e4ff7a808d9463faf6aa04ba3e8828c2f Mon Sep 17 00:00:00 2001 From: tuxtina Date: Sat, 4 Feb 2017 16:07:53 +0100 Subject: [PATCH] Changed *.vapor.sh URLs to use HTTPS --- getting-started/install-swift-3-macos.md | 2 +- getting-started/install-swift-3-ubuntu.md | 4 ++-- getting-started/install-toolbox.md | 2 +- getting-started/manual.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/getting-started/install-swift-3-macos.md b/getting-started/install-swift-3-macos.md index 817ab369..f8ebb9f7 100644 --- a/getting-started/install-swift-3-macos.md +++ b/getting-started/install-swift-3-macos.md @@ -21,7 +21,7 @@ After Xcode 8 has been downloaded, you must open it to finish the installation. Double check the installation was successful by running: ```sh -curl -sL check.vapor.sh | bash +curl -sL https://check.vapor.sh | bash ``` ## Toolbox diff --git a/getting-started/install-swift-3-ubuntu.md b/getting-started/install-swift-3-ubuntu.md index da43a952..f98d5b86 100644 --- a/getting-started/install-swift-3-ubuntu.md +++ b/getting-started/install-swift-3-ubuntu.md @@ -11,7 +11,7 @@ Installing Swift 3 on Ubuntu only takes a couple of minutes. Don't want to type? Run the following script to quickly install Swift 3.0. ```sh -curl -sL swift.vapor.sh/ubuntu | bash +curl -sL https://swift.vapor.sh/ubuntu | bash ``` > Note: The install script adds Swift to your `~/.bashrc` profile automatically. @@ -86,7 +86,7 @@ export PATH=/swift-3.0/usr/bin:"${PATH}" Double check the installation was successful by running: ```sh -curl -sL check.vapor.sh | bash +curl -sL https://check.vapor.sh | bash ``` ## Toolbox diff --git a/getting-started/install-toolbox.md b/getting-started/install-toolbox.md index 506825f4..a1483d35 100644 --- a/getting-started/install-toolbox.md +++ b/getting-started/install-toolbox.md @@ -15,7 +15,7 @@ Vapor's command line interface provides shortcuts and assistance for common task Run the following script to install the [Toolbox](https://github.com/vapor/toolbox). ```sh -curl -sL toolbox.vapor.sh | bash +curl -sL https://toolbox.vapor.sh | bash ``` > Note: You must have the correct version of Swift 3 installed. diff --git a/getting-started/manual.md b/getting-started/manual.md index ba91aa2b..6dba8c61 100644 --- a/getting-started/manual.md +++ b/getting-started/manual.md @@ -17,7 +17,7 @@ This document assumes that you have Swift 3 installed. To check that your environment is compatible, run the following script: ```bash -curl -sL check.vapor.sh | bash +curl -sL https://check.vapor.sh | bash ``` ## Make new project using SwiftPM