#!/bin/bash

# sandboxing must be disabled at process startup, otherwise known bwrap (bubblewrap) issues 
# bwrap: setting up uid map: Permission denied
#  (InterroBot:45454): ERROR : 16:45:15.360: Failed to fully launch dbus-proxy: Child process exited with code 1
# Aborted (core dumped)
export WEBKIT_DISABLE_SANDBOX_THIS_IS_DANGEROUS=1

cd /usr/share/InterroBot
exec ./InterroBot "$@"
