mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
9d830e94f9
Signed-off-by: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>
8 lines
275 B
Bash
Executable file
8 lines
275 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# this script replaces the line
|
|
# appname = 'Nextcloud'
|
|
# with the correct branding name in the syncstate.py script
|
|
# It also replaces the occurrences in the class name so several
|
|
# branding can be loaded (see #6524)
|
|
sed -i.org -e "s/Nextcloud/$1/g" syncstate.py
|