From b428cba742472c38ddfb816c842673866b976d43 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 20 Nov 2017 18:35:32 -0500 Subject: [PATCH] Move the contents of crystal.md into commands.md --- help/commands.md | 9 +++++++++ help/crystal.md | 8 -------- 2 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 help/crystal.md diff --git a/help/commands.md b/help/commands.md index e5b2ba35..5ea79680 100644 --- a/help/commands.md +++ b/help/commands.md @@ -87,6 +87,15 @@ These programs are installed on top of the base system. Note that you can run multiple servers on different ports through Jekyll and other software. +### Crystal + +- Build and run the program directly: `crystal ` +- Compile the program to binary: `crystal build ` + - Add `--progress` or `-p` to show build progress + - Add `--release` when you're building the release version (takes longer) + - Add `--no-debug` to increase the build speed (useful for dev builds) + - Add `-o` to specify the location of the output file + ### Dealing with Archives - Zip all files in a directotry: `zip -r ` diff --git a/help/crystal.md b/help/crystal.md deleted file mode 100644 index 811f0528..00000000 --- a/help/crystal.md +++ /dev/null @@ -1,8 +0,0 @@ -# Crystal - -- Build and run the program directly: `crystal ` -- Compile the program to binary: `crystal build ` - - Add `--progress` or `-p` to show build progress - - Add `--release` when you're building the release version (takes longer) - - Add `--no-debug` to increase the build speed (useful for dev builds) - - Add `-o` to specify the location of the output file