mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
13 lines
438 B
Bash
Executable File
13 lines
438 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-FileCopyrightText: 2015 ownCloud GmbH
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# 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
|