We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 596aa9f commit 5dab361Copy full SHA for 5dab361
builds/install/arch-specific/darwin/install-script
@@ -23,7 +23,8 @@ FB_RES="$FB_FW/Versions/A/Resources"
23
# Now create the firebird group
24
echo "Create the Firebird group 10.7+"
25
if dscl localhost -read /Local/Default/Groups/firebird 2&>1 /dev/null; then
26
- echo "Group Found"
+ gid=$(dscl localhost -read /Local/Default/Groups/firebird PrimaryGroupID | awk '($1 == "PrimaryGroupID:") { print $2 }')
27
+ echo "Group Found $gid"
28
else
29
gid=501
30
dscl localhost -search /Local/Default/Groups PrimaryGroupID $gid | grep $gid
0 commit comments