mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-18 07:18:58 -04:00
10 lines
172 B
Bash
10 lines
172 B
Bash
#!/bin/sh
|
|
|
|
cd /opt/ventoy || exit 1
|
|
|
|
if [ "$(uname -m)" = "x86_64" ]; then
|
|
./VentoyGUI.x86_64 "$@"
|
|
elif [ "$(uname -m)" = "aarch64" ]; then
|
|
./VentoyGUI.aarch64 "$@"
|
|
fi
|