From d9d17929f8d99b5ec81bc6ac5a8e7a59b10f84e0 Mon Sep 17 00:00:00 2001 From: Antoine Gersant Date: Wed, 14 Sep 2016 23:46:10 -0700 Subject: [PATCH] Revert "Added build status to readme" This reverts commit 33817aa12fc6d47c7193c7253776938a8663a725. --- README.md | 4 +--- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b9ca5f8..1ae76ba 100644 --- a/README.md +++ b/README.md @@ -1,3 +1 @@ -[![Build Status](https://travis-ci.org/agersant/polaris.svg?branch=master)](https://travis-ci.org/agersant/polaris) - -# Polaris \ No newline at end of file +# polaris \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index 4857a8a..75d9c24 100644 --- a/src/main.rs +++ b/src/main.rs @@ -47,7 +47,7 @@ fn main() { let mut mount = Mount::new(); mount.mount("/api/", api_chain); - mount.mount("/", Static::new(Path::new("../polaris-web"))); + mount.mount("/", Static::new(Path::new("web"))); Iron::new(mount).http("localhost:3000").unwrap(); }