mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
7 lines
207 B
Bash
Executable File
7 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
|