mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 15:55:56 +01:00
8fdd1c7253
amend demos/Lazarus/CustomResourceBrowser/LICENSE.txt
14 lines
389 B
Bash
Executable File
14 lines
389 B
Bash
Executable File
#!/bin/sh
|
|
|
|
CDIR=$(pwd)
|
|
cd "$(dirname "$0")"
|
|
|
|
../AppHelper/create_mac_helper_apps.sh ../../../bin/BrowserWindow.app
|
|
|
|
if [ "$(grep -i TCrCocoaApplication ../../../bin/BrowserWindow.app/Contents/Info.plist)" = "" ];
|
|
then
|
|
sed -i '' "1,4s/<dict>/<dict>\n <key>NSPrincipalClass<\/key>\n <string>TCrCocoaApplication<\/string>/" ../../../bin/BrowserWindow.app/Contents/Info.plist
|
|
fi
|
|
|
|
cd "$CDIR"
|