
Patch-1: put repos in a tar file and moved it to S3. Change-Id: I42798cf4ce7893d0fa713ce088737ebe7b78db85
8 lines
193 B
Bash
Executable File
8 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p /tmp/repo/
|
|
cd /tmp/repo/
|
|
wget https://s3-us-west-1.amazonaws.com/compass-local-repo/local_repo.tar.gz
|
|
tar -xzvf local_repo.tar.gz
|
|
mv local_repo/* /var/www/compass_web/v2/
|