mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-09 19:05:05 -05:00
2ac91f50c8
git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@2 4b5297f7-1745-476d-ba37-a9c6900126ab
10 lines
214 B
Bash
Executable File
10 lines
214 B
Bash
Executable File
#!/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
|