diff --git a/examples/README.md b/examples/README.md index ac63874389f..2828741da1e 100644 --- a/examples/README.md +++ b/examples/README.md @@ -40,8 +40,8 @@ We've made it easy to run the browser based examples on your local machine. 1. Build and run the example server: ``` sh - git clone https://github.com/pion/webrtc.git $GOPATH/src/github.com/pion/webrtc - cd $GOPATH/src/github.com/pion/webrtc/examples + git clone https://github.com/pion/webrtc.git webrtc + cd pion/webrtc/examples go run examples.go ``` diff --git a/examples/ice-restart/README.md b/examples/ice-restart/README.md index b91b6f18ba9..fbde17a1235 100644 --- a/examples/ice-restart/README.md +++ b/examples/ice-restart/README.md @@ -7,8 +7,6 @@ ice-restart demonstrates Pion WebRTC's ICE Restart abilities. This example requires you to clone the repo since it is serving static HTML. ``` -mkdir -p $GOPATH/src/github.com/pion -cd $GOPATH/src/github.com/pion git clone https://github.com/pion/webrtc.git cd webrtc/examples/ice-restart ``` diff --git a/examples/ice-single-port/README.md b/examples/ice-single-port/README.md index 994d23756de..ea48629fe3a 100644 --- a/examples/ice-single-port/README.md +++ b/examples/ice-single-port/README.md @@ -11,8 +11,6 @@ multiple PeerConnections to use the same port. This example requires you to clone the repo since it is serving static HTML. ``` -mkdir -p $GOPATH/src/github.com/pion -cd $GOPATH/src/github.com/pion git clone https://github.com/pion/webrtc.git cd webrtc/examples/ice-single-port ``` diff --git a/examples/ice-tcp/README.md b/examples/ice-tcp/README.md index 1f505eaf3ad..fa5069d584a 100644 --- a/examples/ice-tcp/README.md +++ b/examples/ice-tcp/README.md @@ -7,8 +7,6 @@ ice-tcp demonstrates Pion WebRTC's ICE TCP abilities. This example requires you to clone the repo since it is serving static HTML. ``` -mkdir -p $GOPATH/src/github.com/pion -cd $GOPATH/src/github.com/pion git clone https://github.com/pion/webrtc.git cd webrtc/examples/ice-tcp ``` diff --git a/examples/play-from-disk-renegotiation/README.md b/examples/play-from-disk-renegotiation/README.md index 17669e531bd..118dfdb60ba 100644 --- a/examples/play-from-disk-renegotiation/README.md +++ b/examples/play-from-disk-renegotiation/README.md @@ -9,8 +9,6 @@ For a simpler example of playing a file from disk we also have [examples/play-fr This example requires you to clone the repo since it is serving static HTML. ``` -mkdir -p $GOPATH/src/github.com/pion -cd $GOPATH/src/github.com/pion git clone https://github.com/pion/webrtc.git cd webrtc/examples/play-from-disk-renegotiation ``` diff --git a/examples/trickle-ice/README.md b/examples/trickle-ice/README.md index ff4342370ab..2cffbfc47c2 100644 --- a/examples/trickle-ice/README.md +++ b/examples/trickle-ice/README.md @@ -13,8 +13,6 @@ Trickle ICE isn't mandatory to use, but highly recommended. This example requires you to clone the repo since it is serving static HTML. ``` -mkdir -p $GOPATH/src/github.com/pion -cd $GOPATH/src/github.com/pion git clone https://github.com/pion/webrtc.git cd webrtc/examples/trickle-ice ```