Merge lp:~matt-goodall/canonical-identity-provider/remove-bootstrap-with-cache into lp:canonical-identity-provider/release

Proposed by Matt Goodall
Status: Merged
Approved by: Matt Goodall
Approved revision: no longer in the source branch.
Merged at revision: 1235
Proposed branch: lp:~matt-goodall/canonical-identity-provider/remove-bootstrap-with-cache
Merge into: lp:canonical-identity-provider/release
Diff against target: 17 lines (+0/-13)
1 file modified
scripts/bootstrap-with-cache.sh (+0/-13)
To merge this branch: bzr merge lp:~matt-goodall/canonical-identity-provider/remove-bootstrap-with-cache
Reviewer Review Type Date Requested Status
Wes Mason (community) Approve
Review via email: mp+246111@code.launchpad.net

Commit message

Removed ./scripts/bootstrap-with-cache.sh. Use `make bootstrap` instead.

Description of the change

Removed bootstrap with cache script. It was wrong (`fab bootstrap` has been replaced with `make bootstrap`) and I don't think the cache part is used now.

To post a comment you must log in.
Revision history for this message
Wes Mason (wesmason) wrote :

LGTM

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== removed file 'scripts/bootstrap-with-cache.sh'
2--- scripts/bootstrap-with-cache.sh 2013-01-24 20:12:30 +0000
3+++ scripts/bootstrap-with-cache.sh 1970-01-01 00:00:00 +0000
4@@ -1,13 +0,0 @@
5-#!/bin/sh
6-
7-set -e
8-
9-DOWNLOAD_CACHE=$(dirname `dirname $PWD`)/isd-download-cache
10-if [ -d $DOWNLOAD_CACHE ]; then
11- echo "Updating download cache at dir" $DOWNLOAD_CACHE
12- bzr pull -d $DOWNLOAD_CACHE
13-else
14- echo "Branching the download cache in dir" $DOWNLOAD_CACHE
15- bzr branch lp:~canonical-isd-hackers/+junk/download-cache $DOWNLOAD_CACHE
16-fi
17-fab bootstrap:download_cache_path=$DOWNLOAD_CACHE