ncoronado / tracshell

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

bin/tracshell is missing #44

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Read the Getting started Wiki page and follow the instructions.
2. There it says "Afterwards, add a symbolic link to ./tracshell/bin/tracshell 
somewhere in your $PATH." 

What is the expected output? What do you see instead?

Unfortunately that file and also the whole bin directory is missing.

What version of the product are you using? On what operating system?
svn trunk @ r70 on Ubunt 10.10

Please provide any additional information below.
I also tried `python setup.py install` but also that is complaining abou the 
missing file/dir

Original issue reported on code.google.com by dietmar....@dwe.no on 27 Jan 2011 at 1:40

GoogleCodeExporter commented 8 years ago
Thanks for the report. I really should update the setup.py to create the 
script. I'll try and get this done by the weekend.

Original comment by j.kennet...@gmail.com on 11 May 2011 at 3:03

GoogleCodeExporter commented 8 years ago

Original comment by j.kennet...@gmail.com on 11 May 2011 at 3:04

GoogleCodeExporter commented 8 years ago
Today, I tried to install and faced the same issue.
Is this issue introduced in the latest revision only. 
Is there any older revision without this issue?

Original comment by vineela....@gmail.com on 1 Jul 2011 at 6:13

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
To get things working for me (Mac OS X, Snow Leopard), I did the following:

 1. Commented out the line:

data_files=[('/usr/local/bin', ['./bin/tracshell'])],

 in setup.py.

 2. python setup.py bdist_egg

 3. easy_install dist/TracShell-0.1dev_r0-py2.6.egg

Original comment by reinvented on 27 Sep 2011 at 5:08

GoogleCodeExporter commented 8 years ago
In the mean-time, generate it yourself:

!/usr/bin/env python                                                           

from tracshell.core import run                                                  

if __name__ == '__main__':                                                      
  run()

Original comment by carlvant...@gmail.com on 10 Nov 2011 at 4:50