mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
7d8bba6786
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
6 lines
207 B
Bash
Executable file
6 lines
207 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# this script replaces the line
|
|
# appname = 'Nextcloud'
|
|
# with the correct branding name in the syncstate.py script
|
|
sed -i.org -e 's/appname\s*=\s*'"'"'Nextcloud'"'/appname = '$1'/" syncstate.py
|