#!/bin/sh

cd /opt/ventoy || exit 1

if [ "$(uname -m)" = "x86_64" ]; then
  ./VentoyGUI.x86_64 "$@"
else
  ./VentoyGUI.i386 "$@"
fi
