Skip to content

Commit

Permalink
Accept relative paths in --with-workdir switch
Browse files Browse the repository at this point in the history
  • Loading branch information
onyb authored and vgvassilev committed Aug 14, 2014
1 parent 04e4aad commit 76e57e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interpreter/cling/tools/packaging/cpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1323,7 +1323,7 @@ def make_dmg():
# Global variables #
###############################################################################

workdir = os.path.expanduser(args['with_workdir'])
workdir = os.path.abspath(os.path.expanduser(args['with_workdir']))

# This is needed in Windows
if not os.path.isdir(workdir):
Expand Down

0 comments on commit 76e57e6

Please sign in to comment.