2015-01-12 16:48:11 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# this script replaces the line
|
|
|
|
# appname = 'ownCloud'
|
|
|
|
# with the correct branding name in the syncstate.py script
|
2016-02-09 14:59:09 +03:00
|
|
|
sed -i.org -e 's/appname\s*=\s*'"'"'ownCloud'"'/appname = '$1'/" syncstate.py
|