From d0a6d1c26f32ade49051389250bdd7118dddeb28 Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Mon, 16 Oct 2023 08:33:28 -0400 Subject: [PATCH] GP-0: Adding assembleAll to DevGuide --- DevGuide.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/DevGuide.md b/DevGuide.md index 53f68392b3..05c6a71f3b 100644 --- a/DevGuide.md +++ b/DevGuide.md @@ -62,8 +62,14 @@ Build Javadoc: gradle createJavadocs ``` -Build Ghidra to `build/dist`. This will be a distribution intended only to run on the platform on -which it was built. +Build Ghidra to `build/dist` in an uncompressed form. This will be a distribution intended only to +run on the platform on which it was built. +``` +gradle assembleAll +``` + +Build Ghidra to `build/dist` in a compressed form. This will be a distribution intended only to run +on the platform on which it was built. ``` gradle buildGhidra ```