aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2019-10-26 13:46:18 +0700
committerLibravatar Amine Mouafik <amine@mouafik.fr>2019-10-26 13:46:18 +0700
commitf2e2901eb3e1c64a4c0bb9874e613b3459bad6a2 (patch)
treea720d80b7de0a5c6febcf5ec314fe106f82eff58 /.travis.yml
parentFix sed command on macOS builds (diff)
downloadferdium-app-f2e2901eb3e1c64a4c0bb9874e613b3459bad6a2.tar.gz
ferdium-app-f2e2901eb3e1c64a4c0bb9874e613b3459bad6a2.tar.zst
ferdium-app-f2e2901eb3e1c64a4c0bb9874e613b3459bad6a2.zip
Fix sed command on linux builds
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 8e61cc91d..e9ae3d7d0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,7 +19,7 @@ git:
19# Use sed to replace the SSH URL with the public URL, then initialize submodules 19# Use sed to replace the SSH URL with the public URL, then initialize submodules
20before_install: 20before_install:
21 - if [ $TRAVIS_OS_NAME == "linux" ]; then 21 - if [ $TRAVIS_OS_NAME == "linux" ]; then
22 sed -i '' 's/git@github.com:/https:\/\/github.com\//' .gitmodules 22 sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
23 else 23 else
24 sed -i '' 's/git@github.com:/https:\/\/github.com\//' .gitmodules # macOS 24 sed -i '' 's/git@github.com:/https:\/\/github.com\//' .gitmodules # macOS
25 fi 25 fi