mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2024-12-14 11:58:02 +00:00
18 lines
No EOL
225 B
Bash
Executable file
18 lines
No EOL
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/ |