mirror of
https://github.com/SaraSmiseth/prosody.git
synced 2025-01-18 21:20:36 +00:00
9 lines
199 B
Bash
Executable file
9 lines
199 B
Bash
Executable file
#!/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
|