From 0cf0f3eddc02a032d8d7e563f0b76d93276cd954 Mon Sep 17 00:00:00 2001 From: jamie Date: Thu, 2 Dec 2010 06:54:26 +0000 Subject: [PATCH] Remove stack limit when adding/deleting Ignore-this: 56140e55456bcf59097d091dbc995946 darcs-hash:20101202065426-1e580-7a28a7258bbad11332b75256fc894231f7b7b59b.gz --- add | 1 + del | 1 + 2 files changed, 2 insertions(+) diff --git a/add b/add index 9a454e6..377a5bb 100755 --- a/add +++ b/add @@ -1,4 +1,5 @@ #!/bin/bash +ulimit -s unlimited dir=$(dirname $0) python $dir/db.py --add=$1 $dir/index -update diff --git a/del b/del index 8881720..857eaa6 100755 --- a/del +++ b/del @@ -1,4 +1,5 @@ #!/bin/bash +ulimit -s unlimited dir=$(dirname $0) python $dir/db.py --del=$1 $dir/index -update