mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-28 12:47:13 +09:00
Put then and if on the same line.
Having `then` aligned with `if` was pretty confusing, and I kept reading `else` instead of `then`.
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
if [ -z "$NACL_SDK_ROOT" -o -z "$PNACL_TRANSLATE" -o -z "$PNACL_FINALIZE" ]
|
||||
then
|
||||
if [ -z "$NACL_SDK_ROOT" -o -z "$PNACL_TRANSLATE" -o -z "$PNACL_FINALIZE" ]; then
|
||||
echo "One or more variables need to be set:
|
||||
\$NACL_SDK_ROOT=$NACL_SDK_ROOT
|
||||
\$PNACL_TRANSLATE=$PNACL_TRANSLATE
|
||||
@@ -9,17 +8,17 @@ then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -f "$1.nexe" ]
|
||||
then
|
||||
if [ ! -f "$1.nexe" ]; then
|
||||
$PNACL_FINALIZE "$1" -o "$1.final"
|
||||
$PNACL_TRANSLATE -arch $(uname -m) "$1.final" -o "$1.nexe"
|
||||
fi
|
||||
|
||||
command -v python >/dev/null 2>&1 || { echo >&2 "I require python but it's not installed. Aborting."; exit 1; }
|
||||
which python >/dev/null 2>&1 || \
|
||||
{ echo >&2 "Python not found. Aborting."; exit 1; }
|
||||
|
||||
SEL_LDR=$(find "$NACL_SDK_ROOT" -name sel_ldr.py | head -n 1)
|
||||
if [ -z "$SEL_LDR" ]
|
||||
then
|
||||
echo "Couldn't find a sel_ldr.py under $NACL_SDK_ROOT"
|
||||
if [ -z "$SEL_LDR" ]; then
|
||||
echo "Couldn't find sel_ldr.py under $NACL_SDK_ROOT"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user