mirror of
https://github.com/dragonflydb/dragonfly
synced 2024-11-21 23:19:53 +00:00
18 lines
225 B
Bash
Executable File
18 lines
225 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
PLATFORM=$1
|
|
|
|
PSHORT=${PLATFORM#"linux/"}
|
|
echo "PSHORT ${PSHORT}"
|
|
|
|
|
|
if [ "${PSHORT}" = "amd64" ]; then
|
|
SUFFIX='x86_64'
|
|
else
|
|
SUFFIX='aarch64'
|
|
fi
|
|
|
|
mv /tmp/dragonfly-${SUFFIX} /build/dragonfly
|
|
ls -l /build/ |