f-spot r3700 - trunk/tools
- From: sdelcroix svn gnome org
- To: svn-commits-list gnome org
- Subject: f-spot r3700 - trunk/tools
- Date: Wed, 20 Feb 2008 13:00:16 +0000 (GMT)
Author: sdelcroix
Date: Wed Feb 20 13:00:15 2008
New Revision: 3700
URL: http://svn.gnome.org/viewvc/f-spot?rev=3700&view=rev
Log:
remove bashism
Modified:
trunk/tools/f-spot-sqlite-upgrade
Modified: trunk/tools/f-spot-sqlite-upgrade
==============================================================================
--- trunk/tools/f-spot-sqlite-upgrade (original)
+++ trunk/tools/f-spot-sqlite-upgrade Wed Feb 20 13:00:15 2008
@@ -8,10 +8,10 @@
DUMP_LOCATION=$DB_LOCATION.dump
NEW_DB_LOCATION=$DB_LOCATION.new
-if ! which sqlite >& /dev/null ; then
+if ! which sqlite >/dev/null 2>&1 ; then
echo "Could not find sqlite binary. Update aborted." >&2
exit 1
-elif ! which sqlite3 >& /dev/null ; then
+elif ! which sqlite3 >/dev/null 2>&1 ; then
echo "Could not find sqlite3 binary. Update aborted." >&2
exit 1
fi
@@ -26,7 +26,7 @@
rm -f $DUMP_LOCATION
rm -f $NEW_DB_LOCATION
-if grep "^...This file contains an SQLite 2.1 database" $DB_LOCATION &> /dev/null; then
+if grep "^...This file contains an SQLite 2.1 database" $DB_LOCATION >/dev/null 2>&1; then
echo "Upgrading from SQLite 2.1 to SQLite3"
cp $DB_LOCATION $BACKUP_LOCATION
if sqlite $DB_LOCATION .dump > $DUMP_LOCATION &&
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]