[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] [https-everywhere/master 5/5] Remove == bashism
Author: Peter Eckersley <pde@xxxxxxx>
Date: Wed, 10 Nov 2010 12:07:08 -0800
Subject: Remove == bashism
Commit: 543febe8424dc5f93c2efc2179edcf6010955fe7
---
makexpi.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/makexpi.sh b/makexpi.sh
index 1e05d01..6bd19f3 100755
--- a/makexpi.sh
+++ b/makexpi.sh
@@ -41,7 +41,7 @@ fi
XPI_NAME="pkg/$APP_NAME-$VERSION.xpi"
cd "src"
-if [ "$1" == "uncommitted" ]; then
+if [ "$1" = "uncommitted" ]; then
printf >&2 "WARNING: using zip instead of git archive to build .xpi\n"
CHANGES="$(git status . -s)"
if [ -n "$CHANGES" ]; then
--
1.7.1