Skip to content

Commit cb5b906

Browse files
committed
Fix project_init for missing files.
1 parent ceffd07 commit cb5b906

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/_writing_publish_intro.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Updating a Repository
7373

7474
::
7575

76-
planemo shed_update --check_diff --shed_target local
76+
planemo shed_update --shed_target local
7777

7878
Once tools and reqiured dependency files have been published to the tool shed,
7979
the actual shed dependencies can be automatically and installed and tool

planemo/commands/cmd_project_init.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def cli(ctx, path, template=None, **kwds):
4242
untar_args = UNTAR_ARGS % (tempdir)
4343
untar_to(DOWNLOAD_URL, tempdir, untar_args)
4444
shell("ls '%s'" % (tempdir))
45-
shell("mv '%s/%s'/* '%s/%s'/.* '%s'" % (tempdir, template, path))
45+
shell("mv '%s/%s'/* '%s'" % (tempdir, template, path))
46+
shell("mv '%s/%s'/.* '%s'" % (tempdir, template, path))
4647
finally:
4748
shutil.rmtree(tempdir)

0 commit comments

Comments
 (0)