mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
ae3b9f112c
sed is in /bin/ rather than in /usr/bin on some systems, which makes the scripts fail in the build environment. sed should be in the PATH tough.
6 lines
205 B
Bash
Executable file
6 lines
205 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# this script replaces the line
|
|
# appname = 'ownCloud'
|
|
# with the correct branding name in the syncstate.py script
|
|
sed -i.org -e 's/appname\s*=\s*'"'"'ownCloud'"'/appname = '$1'/" syncstate.py
|