diff --git a/.gitignore b/.gitignore index f1052671c3f..11d62343a7c 100644 --- a/.gitignore +++ b/.gitignore @@ -62,3 +62,7 @@ Utils/*implemented.txt # build tools mage-bundle.zip .env + +# build targets +/deploy +/temp diff --git a/Makefile b/Makefile index 066d4568749..ce845d5deb0 100644 --- a/Makefile +++ b/Makefile @@ -17,9 +17,9 @@ build: .PHONY: package package: # Packaging Mage.Client to zip - cd Mage.Client && mvn assembly:single + cd Mage.Client && mvn package assembly:single # Packaging Mage.Server to zip - cd Mage.Server && mvn assembly:single + cd Mage.Server && mvn package assembly:single # Copying the files to the target directory mkdir -p $(TARGET_DIR) cp ./Mage.Server/target/mage-server.zip $(TARGET_DIR)