mirror of
https://github.com/CDrummond/bliss-analyser.git
synced 2025-04-13 15:37:14 +03:00
11 lines
260 B
Bash
Executable File
11 lines
260 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
ARCH=`arch`
|
|
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]:-$0}"; )" &> /dev/null && pwd 2> /dev/null; )";
|
|
|
|
if [ "$ARCH" = "aarch64" ] ; then
|
|
$SCRIPT_DIR/aarch64/bliss-analyser $*
|
|
else
|
|
$SCRIPT_DIR/armhf/bliss-analyser $*
|
|
fi
|