mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-14 07:51:01 +00:00
12 lines
246 B
Bash
12 lines
246 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
ARCH=`arch`
|
||
|
|
||
|
if [ "$ARCH" == "aarch64" -o "$ARCH" == "armv7l" ] ; then
|
||
|
export PATH=/opt/local/llvm/bin:${PATH}
|
||
|
cd /app
|
||
|
RUSTFLAGS="-C linker=lld" cargo web deploy -p plume-front
|
||
|
else
|
||
|
cargo web deploy -p plume-front
|
||
|
fi
|