mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 18:35:46 +02: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/ |