No longer package native if we dont use it
This commit is contained in:
parent
5d2a65079e
commit
7cd4e4101d
1 changed files with 6 additions and 6 deletions
12
build.py
12
build.py
|
@ -167,17 +167,17 @@ def lint(project):
|
||||||
@task
|
@task
|
||||||
def inst(project):
|
def inst(project):
|
||||||
package_uberjar(project)
|
package_uberjar(project)
|
||||||
package_native(project)
|
# package_native(project)
|
||||||
run(
|
run(
|
||||||
f"sudo install -m=755 target/uberjar/{project.name}-standalone.jar /usr/local/bin/{project.name}-standalone.jar",
|
f"sudo install -m=755 target/uberjar/{project.name}-standalone.jar /usr/local/bin/{project.name}-standalone.jar",
|
||||||
shell=True,
|
shell=True,
|
||||||
check=True,
|
check=True,
|
||||||
)
|
)
|
||||||
run(
|
# run(
|
||||||
f"sudo install -m=755 target/graalvm/{project.name} /usr/local/bin/{project.name}",
|
# f"sudo install -m=755 target/graalvm/{project.name} /usr/local/bin/{project.name}",
|
||||||
shell=True,
|
# shell=True,
|
||||||
check=True,
|
# check=True,
|
||||||
)
|
# )
|
||||||
|
|
||||||
|
|
||||||
@task
|
@task
|
||||||
|
|
Loading…
Reference in a new issue