From 8d1b18ef96378c30c96b5b6fbbb05b0bca86e27d Mon Sep 17 00:00:00 2001 From: Uvarov Michael Date: Sun, 24 Feb 2013 17:39:41 +0400 Subject: [PATCH] Ignore log/ directory. --- .gitignore | 1 + start-dev.sh | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100755 start-dev.sh diff --git a/.gitignore b/.gitignore index 43d0229a..ffaccd99 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ webui/*.log /documentation/sup_tree_20110106.png .eunit/ /etorrent_dialyzer.plt +log/* # Common tests /test/etorrent_SUITE_data/test_file_30M.random /test/etorrent_SUITE_data/test_file_30M.random.torrent diff --git a/start-dev.sh b/start-dev.sh new file mode 100755 index 00000000..e8f81ecf --- /dev/null +++ b/start-dev.sh @@ -0,0 +1,10 @@ +#!/bin/sh +cd `dirname $0` + +# NOTE: mustache templates need \ because they are not awesome. +exec erl -pa $PWD/ebin edit $PWD/deps/*/ebin \ + -boot start_sasl \ + -sname etorrent \ + -s etorrent_app \ + -config ~/.config/etorrent +