1
0
Fork 0
forked from mirror/prosody
prosody/download-prosody-modules.bash

10 lines
199 B
Bash
Raw Permalink Normal View History

2020-06-27 17:06:27 +00:00
#!/bin/bash
set -e
dir="/usr/src/prosody-modules"
mkdir -p "${dir}"
wget https://hg.prosody.im/prosody-modules/archive/tip.tar.gz
tar -xzf tip.tar.gz -C "${dir}" --strip-components=1
rm tip.tar.gz