X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=README.md;fp=README.md;h=fa7881a1a8771528e1331dce810313264da89194;hb=8cc104648a0a7728ea397d1a14b05e031960bff0;hp=7dd7f17650530bb83e15d8932ea9592518c9efba;hpb=0e6f47955d30b69a25debc0dba5408d459070bd9;p=akkoma diff --git a/README.md b/README.md index 7dd7f1765..fa7881a1a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,9 @@ so `https://akkoma.dev/AkkomaGang/pleroma-fe` is the repo you need. ### From OTP ```bash -./bin/pleroma_ctl update --zip-url https://akkoma-updates.s3-website.fr-par.scw.cloud/develop/akkoma-amd64.zip +export FLAVOUR=$(arch="$(uname -m)";if [ "$arch" = "x86_64" ];then arch="amd64";elif [ "$arch" = "armv7l" ];then arch="arm";elif [ "$arch" = "aarch64" ];then arch="arm64";else echo "Unsupported arch: $arch">&2;fi;if getconf GNU_LIBC_VERSION>/dev/null;then libc_postfix="";elif [ "$(ldd 2>&1|head -c 9)" = "musl libc" ];then libc_postfix="-musl";elif [ "$(find /lib/libc.musl*|wc -l)" ];then libc_postfix="-musl";else echo "Unsupported libc">&2;fi;echo "$arch$libc_postfix") + +./bin/pleroma_ctl update --zip-url https://akkoma-updates.s3-website.fr-par.scw.cloud/develop/akkoma-$FLAVOUR.zip ./bin/pleroma_ctl migrate ```