We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 803d417 commit 6804cdeCopy full SHA for 6804cde
src/main/distrib/linux/migrate-tickets.sh
@@ -8,7 +8,7 @@
8
#
9
# --------------------------------------------------------------------------
10
11
-if [[ -z $1 || -z $2 ]]; then
+if [ -z $1 ] || [ -z $2 ]; then
12
echo "Please specify the output ticket service and your baseFolder!";
13
echo "";
14
echo "usage:";
src/main/distrib/linux/reindex-tickets.sh
@@ -11,7 +11,7 @@
-if [[ -z $1 ]]; then
+if [ -z $1 ] ; then
15
echo "Please specify your baseFolder!";
16
17
0 commit comments