Skip to content

Commit

Permalink
Do not use rawgit cdn
Browse files Browse the repository at this point in the history
  • Loading branch information
carolynvs committed Oct 28, 2015
1 parent 821482f commit 58a9a52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ function installDvm()
$webClient = New-Object net.webclient

echo "Downloading dvm.ps1..."
$webClient.DownloadFile("https://rawgit.com/getcarina/dvm/master/dvm.ps1", "$dvmDir\dvm.ps1")
$webClient.DownloadFile("https://raw.githubusercontent.com/getcarina/dvm/master/dvm.ps1", "$dvmDir\dvm.ps1")

echo "Downloading dvm.cmd..."
$webClient.DownloadFile("https://cdn.rawgit.com/getcarina/dvm/master/dvm.cmd", "$dvmDir\dvm.cmd")
$webClient.DownloadFile("https://raw.githubusercontent.com/getcarina/dvm/master/dvm.cmd", "$dvmDir\dvm.cmd")

echo "Docker Version Manager (dvm) has been installed to $dvmDir"
echo ""
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if [ ! -d "$DVM_DIR" ]; then
fi

echo "Downloading dvm.sh..."
curl -s -o $DVM_DIR/dvm.sh https://cdn.rawgit.com/getcarina/dvm/master/dvm.sh
curl -s -o $DVM_DIR/dvm.sh https://raw.githubusercontent.com/getcarina/dvm/master/dvm.sh

echo "Docker Version Manager (dvm) has been installed to ${DVM_DIR}"
echo "Add the following command to your bash profile (e.g. ~/.bashrc or ~/.bash_profile) complete the installation:"
Expand Down

0 comments on commit 58a9a52

Please sign in to comment.