Subversion Repositories SvarDOS

Rev

Rev 176 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 176 Rev 177
1
#!/bin/sh
1
#!/bin/sh
2
#
2
#
3
# SvarDOS build script
3
# SvarDOS build script
4
# http://svardos.osdn.io
4
# http://svardos.osdn.io
5
# Copyright (C) 2016-2021 Mateusz Viste
5
# Copyright (C) 2016-2021 Mateusz Viste
6
#
6
#
7
# Synchronization of ISO files, website and repositories towards sourceforge.
7
# Synchronization of ISO files, website and repositories towards sourceforge.
8
#
8
#
9
 
9
 
10
# sync ISO files to sourceforge download servers
10
# sync ISO files to sourceforge download servers
11
#rsync -a --progress iso/* mateuszviste@storage.osdn.net:/storage/groups/s/sv/svardos/
11
#rsync -a --progress iso/* mateuszviste@storage.osdn.net:/storage/groups/s/sv/svardos/
12
#if [ $? -ne 0 ] ; then exit 1 ; fi
12
#if [ $? -ne 0 ] ; then exit 1 ; fi
13
 
13
 
14
# sync the website (with repositories)
14
# sync the website (with repositories)
15
rsync -a --delete --progress website/ mateuszviste@shell.osdn.net/home/groups/s/sv/svardos/htdocs/
15
rsync -rtDOvz --delete --progress website/ mateuszviste@shell.osdn.net:/home/groups/s/sv/svardos/htdocs/
16
 
16
 
17
 
17