#312 revisor-devel.sh does not pass --debug=N to revisor
Closed: Fixed Opened by balor.

revisor-devel.sh launches revisor with incorrect parameters. Fixed in attached patch.


FF3 on F9 pre-release crashes when I try to attach a file, so here's the patch inline:

diff --git a/revisor-devel.sh b/revisor-devel.sh
index 4d7ee3d..c781b1c 100755
--- a/revisor-devel.sh
+++ b/revisor-devel.sh
@@ -24,9 +24,9 @@ fi

if [ "$1" == "--gui" ]; then
echo "Starting GUI"
- sudo ./revisor.py --debug --gui 2>&1 | tee revisor.log
+ sudo ./revisor.py --debug=1 --gui 2>&1 | tee revisor.log
else
- sudo ./revisor.py --debug "$@" 2>&1 | tee revisor.log
+ sudo ./revisor.py --debug=1 "$@" 2>&1 | tee revisor.log
fi

if [ ! -z "mount | cut -d' ' -f 3 | grep revisor" ]; then

revisor-devel.sh has not been kept up-to-date, fixing

Fix committed

Metadata Update from @balor:
- Issue assigned to kanarip
- Issue set to the milestone: 2.1.0 Release

Metadata