diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-07-24 23:03:06 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-07-24 23:03:06 +0200 |
commit | 8f37ab826eed4efcf1dbd883aac03780fa350a46 (patch) | |
tree | 0afce7a1597e4f4fb322ad5d8dd7476a3eae8480 | |
parent | 40d80bde511a7a76a0f5a3c16afc9eef2e5972e2 (diff) | |
download | mdir-8f37ab826eed4efcf1dbd883aac03780fa350a46.tar.gz mdir-8f37ab826eed4efcf1dbd883aac03780fa350a46.tar.bz2 mdir-8f37ab826eed4efcf1dbd883aac03780fa350a46.zip |
fix: Use wild card to fetch any compression
This will make my life easier if I change the compression later. One
less place to worry.
-rw-r--r-- | build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,5 +24,5 @@ tasks: - deploy: | cd midr sshopts="ssh -o StrictHostKeyChecking=no" - rsync --rsh="$sshopts" -rP *.tar.xz $deploy:/var/www/$target + rsync --rsh="$sshopts" -rP *.tar.* $deploy:/var/www/$target |