mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-24 18:22:24 -05:00
10 lines
214 B
Bash
10 lines
214 B
Bash
|
#!/bin/sh
|
||
|
# archive an old version of a XEP (before publishing new version)
|
||
|
# usage: ./archive.sh xepnum version
|
||
|
|
||
|
xeppath=/var/www/xmpp.org/extensions
|
||
|
|
||
|
cp $xeppath/xep-$1.html $jeppath/attic/xep-$1-$2.html
|
||
|
|
||
|
# end
|