diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-07-10 20:24:19 -0300 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-07-10 20:24:19 -0300 |
commit | 6fc605a19624106d94b6f871d1f5cdbaa73e7df3 (patch) | |
tree | f464db6ded67adb1bd641cfa1a6f0c98515efa67 | |
parent | a60f2a93d24237a44b3ca5bd113c4f5283de8384 (diff) |
Travis: Replace `before_install` with `install`
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index a4ec8ab81..4d21257bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,11 +23,6 @@ addons: - lib32stdc++6 # For CMake - lftp # To upload builds -before_install: - - sh .travis-deps.sh - -script: - - sh .travis-build.sh - -after_success: - - sh .travis-upload.sh +install: ./.travis-deps.sh +script: ./.travis-build.sh +after_success: ./.travis-upload.sh |