Merge "Fix missing export of $ARCH"
This commit is contained in:
commit
9e9f5fecb8
@ -19,7 +19,7 @@ if [ -f /etc/debian_version ]; then
|
|||||||
else
|
else
|
||||||
_ARCH=$(uname -m)
|
_ARCH=$(uname -m)
|
||||||
fi
|
fi
|
||||||
ARCH=${ARCH:-_ARCH}
|
ARCH=${ARCH:-$_ARCH}
|
||||||
|
|
||||||
case $ARCH in
|
case $ARCH in
|
||||||
"x86_64")
|
"x86_64")
|
||||||
@ -32,6 +32,7 @@ case $ARCH in
|
|||||||
echo "WARNING: Unknown architecture: $ARCH"
|
echo "WARNING: Unknown architecture: $ARCH"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
export ARCH
|
||||||
|
|
||||||
FS_TYPE=${FS_TYPE:-ext4}
|
FS_TYPE=${FS_TYPE:-ext4}
|
||||||
# Used to set the file extension only at this stage.
|
# Used to set the file extension only at this stage.
|
||||||
|
Loading…
Reference in New Issue
Block a user