mirror of
https://gitlab.com/kholdfuzion/goldeneye_src
synced 2026-05-23 22:45:22 -04:00
10 lines
249 B
Bash
Executable File
10 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
if [ -f "$SCRIPT_DIR"/local/checksum.sh ]; then
|
|
"$SCRIPT_DIR"/local/checksum.sh "$1" "$2" "$3"
|
|
else
|
|
"$SCRIPT_DIR"/default/checksum.sh "$1" "$2"
|
|
fi
|