#!/usr/bin/bash
echo "Acting as flatpak-spawn..."
while [[ $(echo "$1" | cut -c 1-1) = "-" ]]; do
	shift
done

echo "Decoded cmdline: $@"
$@
exit $?
