Commit
b591ce4a5a9518e2c0305df85d7d2799315eeb7b
Rename Travis-CI PPA file to be more descriptive.
Showing
3 changed files
with
6 additions
and
6 deletions
Side-by-side Diff
... |
... |
@@ -1,5 +0,0 @@ |
1
|
|
-#! /bin/sh |
2
|
|
-if [ $PPA != 'none' ];then |
3
|
|
- sudo apt-add-repository -y $PPA; |
4
|
|
- sudo apt-get update -qq; |
5
|
|
-fi |
... |
... |
@@ -19,7 +19,7 @@ before_script: |
19
|
19 |
|
20
|
20 |
install: |
21
|
21 |
# Add PPA if needed |
22
|
|
- - "./.travis-ci.sh" |
|
22 |
+ - "./travis-ppa.sh" |
23
|
23 |
# Install python requirements. |
24
|
24 |
- "pip install -r requirements.txt --use-mirrors" |
25
|
25 |
# Install zsh. |
... |
... |
@@ -0,0 +1,5 @@ |
|
1 |
+#! /bin/sh |
|
2 |
+if [ $PPA != 'none' ];then |
|
3 |
+ sudo apt-add-repository -y $PPA; |
|
4 |
+ sudo apt-get update -qq; |
|
5 |
+fi |