Skip to content

Commit

Permalink
fix: jar path
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjinkun committed Nov 12, 2020
1 parent a1456b0 commit 6118b62
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion launchable/commands/record/commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import shutil

jar_file_path = os.path.normpath(os.path.join(
os.path.dirname(__file__), "../../../bin/exe_deploy.jar"))
os.path.dirname(__file__), "../../jar/exe_deploy.jar"))


@click.command()
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def _requirements(file):
long_description_content_type='text/markdown',
install_requires=_requirements('requirements.txt'),
packages=find_packages(),
package_data={'launchable': ['jar/exe_deploy.jar'] },
entry_points={
'console_scripts': [
'launchable = launchable.__main__:main',
Expand Down

0 comments on commit 6118b62

Please sign in to comment.