mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
0e2c4266fa
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7831 b45a01b8-16f6-495d-af2f-9b41ad6348cc
23 lines
468 B
Bash
Executable File
23 lines
468 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm BaseRetroShareDirs.tgz
|
|
|
|
mv retroshare-0.5/src/data retroshare-0.5/
|
|
rm -rf retroshare-0.5/libssh-0.5.2
|
|
rm -rf retroshare-0.5/src/*
|
|
mv retroshare-0.5/data retroshare-0.5/src/
|
|
|
|
find retroshare-0.5 -name "*~" -exec \rm {} \;
|
|
find retroshare-0.5 -name ".svn" -exec \rm -rf {} \;
|
|
|
|
tar zcvf BaseRetroShareDirs.tgz retroshare-0.5/
|
|
|
|
if ! test -f BaseRetroShareDirs.tgz; then
|
|
echo BaseRetroShareDirs.tgz could not be created
|
|
exit;
|
|
fi
|
|
|
|
rm -rf retroshare-0.5/
|
|
|
|
|