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