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.
true
1 parent 963c42d commit acb688aCopy full SHA for acb688a
nix/tools/run-server.sh.in
@@ -295,6 +295,12 @@ orioledb_config_items() {
295
296
# Apply OrioleDB configuration if needed
297
orioledb_config_items "$VERSION"
298
+
299
+# Fix archive_command for macOS (Darwin doesn't have /bin/true, use /usr/bin/true instead)
300
+if [[ "$CURRENT_SYSTEM" == *"-darwin" ]]; then
301
+ perl -pi -e "s|archive_command = '/bin/true'|archive_command = '/usr/bin/true'|" "$DATDIR/postgresql.conf"
302
+fi
303
304
# Configure Groonga
305
export GRN_PLUGINS_DIR=$GROONGA/lib/groonga/plugins
306
0 commit comments