Reverted the change for Windows long paths, since they're not working properly yet.

This commit is contained in:
Joey Payne 2016-01-12 08:42:26 -07:00
commit d393987117
2 changed files with 1 additions and 7 deletions

View file

@ -1258,10 +1258,7 @@ def main():
if args.quiet:
command_base.quiet = True
if utils.is_windows() and os.path.isabs(args.project_dir):
command_base._project_dir = u'//?/' + args.project_dir
else:
command_base._project_dir = args.project_dir
command_base._project_dir = args.project_dir
command_base._output_dir = (args.output_dir or
utils.path_join(command_base._project_dir, 'output'))

View file

@ -40,9 +40,6 @@ def get_data_path(dir_path):
dirs = AppDirs('Web2Executable', 'Web2Executable')
data_path = path_join(dirs.user_data_dir, *parts)
if is_windows() and os.path.isabs(data_path):
data_path = u'//?/' + data_path
if not os.path.exists(data_path):
os.makedirs(data_path)