mirror of
https://github.com/wting/autojump
synced 2024-10-27 20:34:07 +00:00
Merge c29a369289
into c5f0473837
This commit is contained in:
commit
d254016028
@ -29,13 +29,13 @@ def mkdir(path, dryrun=False):
|
||||
os.makedirs(path)
|
||||
|
||||
|
||||
def modify_autojump_sh(etc_dir, dryrun=False):
|
||||
def modify_autojump_sh(etc_dir, share_dir, dryrun=False):
|
||||
"""Append custom installation path to autojump.sh"""
|
||||
custom_install = "\
|
||||
\n# check custom install \
|
||||
\nif [ -s %s/autojump.${shell} ]; then \
|
||||
\n\tsource %s/autojump.${shell} \
|
||||
\nfi\n" % (etc_dir, etc_dir)
|
||||
\nfi\n" % (share_dir, share_dir)
|
||||
|
||||
with open(os.path.join(etc_dir, 'autojump.sh'), 'a') as f:
|
||||
f.write(custom_install)
|
||||
@ -207,7 +207,7 @@ def main(args):
|
||||
cp('./bin/_j', zshshare_dir, args.dryrun)
|
||||
|
||||
if args.custom_install:
|
||||
modify_autojump_sh(etc_dir, args.dryrun)
|
||||
modify_autojump_sh(etc_dir, share_dir, args.dryrun)
|
||||
|
||||
show_post_installation_message(etc_dir, share_dir, bin_dir)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user