Balamurugan-R / wub

Automatically exported from code.google.com/p/wub
0 stars 0 forks source link

Site.tcl replaces source command with a version that breaks on filenames with spaces. #27

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago

What version of the product are you using? On what operating system?

svn latest.  
Windows

Please provide any additional information below.

Site.tcl
change
  return [uplevel source_org {*}$args]
to
  return [uplevel source_org $args]

uplevel concats its arguments together.  using {*} causes it go get expanded 
twice.
If your filename has a space, it will throw an error.

Original issue reported on code.google.com by tircnf on 18 Nov 2010 at 5:22

GoogleCodeExporter commented 8 years ago
Fixed as suggested

Original comment by mcc...@gmail.com on 18 Nov 2010 at 10:18

GoogleCodeExporter commented 8 years ago

Original comment by mcc...@gmail.com on 30 Apr 2011 at 2:24