From: ThomasV Date: Tue, 4 Mar 2014 21:23:53 +0000 (+0400) Subject: fixes for start script X-Git-Url: https://git.novaco.in/?p=electrum-server.git;a=commitdiff_plain;h=9e68150ef4404205b79f84ec20d5e6fd82eae290;hp=9baf5ef4407f8d1aa5bc894ea1a0f34a9d8bae3c fixes for start script --- diff --git a/start b/start index 6bf6668..bd1db62 100755 --- a/start +++ b/start @@ -24,12 +24,15 @@ if ! [ "$path" ]; then # we're actually forcing fulltree with this clause, which is ok if displaying v0.9 should use fulltree fi +rmdir $path --ignore-fail-on-non-empty + if [ ! -d $path ]; then echo "Database not found in $path." read -p "Do you want to download it from the Electrum foundry to $path ? " -n 1 -r echo if [[ $REPLY =~ ^[Yy]$ ]]; then - wget -O - "http://foundry.electrum.org/leveldb-dump/electrum-fulltree-100-latest.tar.gz" | tar -C $path --strip-components 1 -xvfz - + mkdir $path + wget -O - "http://foundry.electrum.org/leveldb-dump/electrum-fulltree-100-latest.tar.gz" | tar --extract --gunzip --strip-components 1 --directory $path --file - fi fi