Skip to content

Commit

Permalink
make setup.sh relinking idempotent
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuels committed Jun 18, 2012
1 parent 1691239 commit 3c7ddec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.sh
Expand Up @@ -39,7 +39,9 @@ echo -n "Formatting Volvox example data ...";
ln -sf ../../volvox/tracks/volvox_microarray.wig sample_data/json/modencode/tracks/volvox_microarray.wig;
fi;
mkdir -p sample_data/raw;
ln -sf ../../docs/tutorial/data_files sample_data/raw/volvox;
if [ ! -e sample_data/raw/volvox ]; then
ln -s ../../docs/tutorial/data_files sample_data/raw/volvox;
fi;
ln -sf ../../docs/tutorial/conf_files/volvox.json sample_data/raw/;

) >>setup.log 2>&1
Expand Down

0 comments on commit 3c7ddec

Please sign in to comment.