From 72a09a26636a1a6d8438fb4dd7212c7495238a39 Mon Sep 17 00:00:00 2001 From: Netkas Date: Wed, 1 Mar 2023 19:14:35 -0500 Subject: [PATCH] Updated CHANGELOG.md --- .idea/runConfigurations/Build.xml | 10 ++++++++++ .idea/runConfigurations/Clean.xml | 8 ++++++++ .idea/runConfigurations/Install.xml | 10 ++++++++++ Makefile | 10 +++++----- 4 files changed, 33 insertions(+), 5 deletions(-) create mode 100644 .idea/runConfigurations/Build.xml create mode 100644 .idea/runConfigurations/Clean.xml create mode 100644 .idea/runConfigurations/Install.xml diff --git a/.idea/runConfigurations/Build.xml b/.idea/runConfigurations/Build.xml new file mode 100644 index 0000000..a601571 --- /dev/null +++ b/.idea/runConfigurations/Build.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Clean.xml b/.idea/runConfigurations/Clean.xml new file mode 100644 index 0000000..5ba1469 --- /dev/null +++ b/.idea/runConfigurations/Clean.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Install.xml b/.idea/runConfigurations/Install.xml new file mode 100644 index 0000000..1fb616b --- /dev/null +++ b/.idea/runConfigurations/Install.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/Makefile b/Makefile index 6dbab58..e3f87d5 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ -release: - ncc build --config="release" +build: + ncc build --config="release" --log-level debug install: - ncc package install --package="build/release/net.nosial.tgbotlib.ncc" --skip-dependencies --reinstall -y + sudo ncc package install --package="build/release/net.nosial.tgbotlib.ncc" --skip-dependencies --reinstall -y --log-level debug -uninstall: - ncc package uninstall -y --package="net.nosial.tgbotlib" \ No newline at end of file +clean: + rm -rf build \ No newline at end of file