Ubuntu Pastebin

Paste from Daniel Holbach at Wed, 23 Mar 2016 09:26:34 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
=== modified file 'Makefile'
--- Makefile	2016-01-18 23:57:19 +0000
+++ Makefile	2016-03-23 09:26:22 +0000
@@ -61,7 +61,7 @@
 update-pip-cache:
 	@echo "Updating pip-cache"
 	rm -rf pip-cache
-	bzr branch lp:developer-ubuntu-com/dependencies pip-cache
+	bzr checkout --lightweight lp:developer-ubuntu-com/dependencies pip-cache
 	pip install --exists-action=w --download pip-cache/ -r requirements.txt
 	bzr add pip-cache/* 
 	bzr commit pip-cache/ -m 'automatically updated devportal requirements'
@@ -72,7 +72,7 @@
 
 pip-cache:
 	@echo "Downloading pip-cache"
-	@bzr branch -r `cat pip-cache-revno.txt` lp:developer-ubuntu-com/dependencies pip-cache
+	@bzr checkout --lightweight -r `cat pip-cache-revno.txt` lp:developer-ubuntu-com/dependencies pip-cache
 
 env: pip-cache
 	@echo "Creating virtualenv"
Download as text