diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-09-23 01:51:07 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-09-23 01:57:41 +0200 |
commit | 50397e8ce80f3d19321052da6eade0a165e3546c (patch) | |
tree | fd107fc7ec00ee1266a6c7b09aa36ceb02045681 /.travis/build-pkgs | |
parent | 4e87fc7650c6918c586b2e15ba3e4ad8c65fc5c3 (diff) | |
download | aports-50397e8ce80f3d19321052da6eade0a165e3546c.tar.bz2 aports-50397e8ce80f3d19321052da6eade0a165e3546c.tar.xz |
travis: fix set_repositories_for() again
I'm apparently too tired... (-_o)zzZ Sorry for that.
Diffstat (limited to '.travis/build-pkgs')
-rwxr-xr-x | .travis/build-pkgs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/build-pkgs b/.travis/build-pkgs index b6ab68a38e..cb18419982 100755 --- a/.travis/build-pkgs +++ b/.travis/build-pkgs @@ -45,7 +45,7 @@ set_repositories_for() { [ "$repo" = "$target_repo" ] && break done - sudo printf '%s\n' $repos > /etc/apk/repositories + sudo sh -c "printf '%s\n' $repos > /etc/apk/repositories" sudo apk update } |