Kaydet (Commit) 54b0a532 authored tarafından sulincix's avatar sulincix

fixes

üst dd664ec0
......@@ -11,14 +11,14 @@ fi
set +e
if [ "$TARGET" == "debian" ] ; then
if [ "$arch" == "" ] ; then
[ "$(uname -m)" == "x86_64" ] && export arch="amd64" || true
[ "$(uname -m)" == "i686" ] && export arch="i386" || true
[ "$(uname -m)" == "aarch64" ] && export arch="arm64" || true
[ "$(uname -m)" == "armhf" ] && export arch="arm" || true
[ "$(uname -m)" == "x86_64" ] && arch="amd64" || true
[ "$(uname -m)" == "i686" ] && arch="i386" || true
[ "$(uname -m)" == "aarch64" ] && arch="arm64" || true
[ "$(uname -m)" == "armhf" ] && arch="arm" || true
fi
elif [ "$TARGET" == "inary" ] ; then
if [ "$arch" == "" ] ; then
export arch="$(uname -m)"
arch="$(uname -m)"
fi
fi
set -e
......
......@@ -2,7 +2,6 @@
export name="unnamed"
export version="1.0"
export release="1"
export arch="$(uname -m)"
export homepage="https://example.github.io"
export url="https://gitlab.com/example"
export date="01.01.1970"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment