mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-14 16:42:47 +01:00
919debccfc
It appears that several extension can be loaded at the same time, but their classname for the extension need to be different, otherwise only the last loaded one would be active. Issue #6524
9 lines
274 B
Bash
Executable File
9 lines
274 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 occurences in the class name so several
|
|
# branding can be loaded (see #6524)
|
|
sed -i.org -e "s/Nextcloud/$1/g" syncstate.py
|