Skip to content

Commit

Permalink
Update infer to support symlinking
Browse files Browse the repository at this point in the history
  • Loading branch information
dambrisco committed Jun 11, 2015
1 parent 2bce7c6 commit b2b2fe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infer/bin/infer
Expand Up @@ -6,10 +6,10 @@ import inferlib
import os
import sys

SCRIPT_FOLDER = os.path.dirname(__file__)
SCRIPT_FOLDER = os.path.dirname(os.path.realpath(__file__))
CAPTURE_PACKAGE = 'capture'
LIB_FOLDER = os.path.join(
os.path.dirname(__file__), os.path.pardir, 'lib')
os.path.dirname(os.path.realpath(__file__)), os.path.pardir, 'lib')

# token that identifies the end of the options for infer and the beginning
# of the compilation command
Expand Down

0 comments on commit b2b2fe4

Please sign in to comment.