blob: 756e4a5fbd8fe318665e214c2939ab3783a07db5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
#
# FreeBSD-specific startup script for Eclipse Platform
#
# See: http://www.eclipse.org
#
# Create required Webkit communication directories removed by:
# https://git.eclipse.org/r/c/platform/eclipse.platform.swt/+/163641/
for D in SWT-GDBusServer SWT-WebExtensionGDBusServer
do
mkdir -p /tmp/${D}
chmod -f 1777 /tmp/${D}
done
JAVA_VERSION="%%JAVA_VERSION%%" exec %%DATADIR%%/eclipse "$@"
|