/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to src/stdhome.in

  • Committer: Tim Marston
  • Date: 2016-12-13 21:40:34 UTC
  • Revision ID: tim@ed.am-20161213214034-nd5t7ztnlrjd627i
fix add command and generic filename expansion/resolution to expend to
homedir-relative filename and absolute filename based on original filename, as
specified, rather than a fully, symlink-resolved filename.  So, e.g., if ~/bob
was a symlink to ~/fred, then ~/bob/a would resolve to the relative filename
bob/a, becuase it is inside the homedir (it would resolve to fred/a otherwise)

Show diffs side-by-side

added added

removed removed

21
21
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
 
23
23
 
24
 
# @PACKAGE_NAME@ version @PACKAGE_VERSION@
25
 
 
 
24
# @PACKAGE_NAME@ version @PACKAGE_VERSION@@bzr_info@
26
25
 
27
26
if __name__ == "__main__":
28
27
 
40
39
        # start main program
41
40
        from stdhome import the
42
41
        from stdhome.program import Program
43
 
        the.program = Program( "@PACKAGE_VERSION@" )
 
42
        the.program = Program( "@PACKAGE_VERSION@@bzr_info@" )
44
43
        the.program.run()