mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
10 lines
264 B
Bash
10 lines
264 B
Bash
|
#!/bin/bash
|
||
|
# Original content copyright (c) 2014 dpen2000 licensed under the MIT license
|
||
|
mkdir -p /vagrant/temp
|
||
|
cd /vagrant/temp
|
||
|
rm -f dump.tar.gz
|
||
|
rm -rf dump
|
||
|
wget http://analytics.codecombat.com:8080/dump.tar.gz
|
||
|
tar xzvf dump.tar.gz --no-same-owner
|
||
|
mongorestore
|