Skip to content

Commit

Permalink
Don't exit if rm fails
Browse files Browse the repository at this point in the history
  • Loading branch information
pailakka authored and pailakka committed Apr 24, 2018
1 parent 7d04b1a commit 35993b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function build_graph {
FILE=$2
echo "building graph..."
DIR="graphs"
rm -rf $DIR
rm -rf $DIR || true
mkdir -p $DIR
unzip -o -d $DIR $FILE
mv $DIR/router-$GRAPHNAME $DIR/$GRAPHNAME
Expand Down

0 comments on commit 35993b5

Please sign in to comment.