mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

+ Initial groundwork for AMD64 builds on ARM/Rosetta. Not currently viable due to bugs in either Linux or Rosetta which results in a Sveltekit build hanging indefinitely.
9 lines
108 B
Bash
9 lines
108 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ "$(uname -m)" == "x86_64" ]]; then
|
|
platform="amd"
|
|
else
|
|
platform="arm"
|
|
fi
|