Skip to content

Commit

Permalink
Merge pull request #37 from launchableinc/fix-exec-jar
Browse files Browse the repository at this point in the history
Fix jar path
  • Loading branch information
ninjinkun authored Nov 12, 2020
2 parents a1456b0 + 6118b62 commit a2ce9a4
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 a2ce9a4

Please sign in to comment.