mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
compile_linux: warn instead of quit for unsupported arch
This commit is contained in:
parent
f22b2d38b1
commit
3abf4c82f7
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ ARCH="$(uname -m)"
|
|||
case $ARCH in
|
||||
i*86) SUFFIX=x86;;
|
||||
x86_64*) SUFFIX=amd64;;
|
||||
*) echo >&2 "unsupported: $ARCH"; exit 1;;
|
||||
*) echo >&2 "unsupported: $ARCH, this script may not work";;
|
||||
esac
|
||||
|
||||
SRC="$(dirname "$0")/.."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue