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
|
||||
def inst(project):
|
||||
package_uberjar(project)
|
||||
package_native(project)
|
||||
# package_native(project)
|
||||
run(
|
||||
f"sudo install -m=755 target/uberjar/{project.name}-standalone.jar /usr/local/bin/{project.name}-standalone.jar",
|
||||
shell=True,
|
||||
check=True,
|
||||
)
|
||||
run(
|
||||
f"sudo install -m=755 target/graalvm/{project.name} /usr/local/bin/{project.name}",
|
||||
shell=True,
|
||||
check=True,
|
||||
)
|
||||
# run(
|
||||
# f"sudo install -m=755 target/graalvm/{project.name} /usr/local/bin/{project.name}",
|
||||
# shell=True,
|
||||
# check=True,
|
||||
# )
|
||||
|
||||
|
||||
@task
|
||||
|
|
Loading…
Reference in a new issue