From 4f30afc30f8cc880a7edb51dd2137e7b61edc8b3 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Tue, 27 Dec 2016 02:04:47 -0600 Subject: [PATCH] Show RDP information when starting AppVeyor build. --- appveyor.yml | 4 ++++ examples/config/src/main.rs | 2 ++ 2 files changed, 6 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 76552a58..26754edb 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,6 +9,10 @@ environment: - TARGET: x86_64-pc-windows-msvc CHANNEL: nightly +# Show RDP information on init. +init: + - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) + # Install Rust and Cargo install: - curl -sSf -o rustup-init.exe https://win.rustup.rs diff --git a/examples/config/src/main.rs b/examples/config/src/main.rs index ba025e05..1198442d 100644 --- a/examples/config/src/main.rs +++ b/examples/config/src/main.rs @@ -3,6 +3,8 @@ extern crate rocket; +// This example's illustration is the Rocket.toml file. + #[get("/")] fn hello() -> &'static str { "Hello, world!"