index : gmss.git

ascending towards madness

author holly sparkles <sparkles@holly.sh> 2023-12-22 21:50:24.0 +00:00:00
committer holly sparkles <sparkles@holly.sh> 2023-12-22 21:51:07.0 +00:00:00
commit
4de0a83fe4064cae452af5e817683e2f6b870dda [patch]
tree
05ea379ad4431631d56a9624ef0446b8dc8a9a05
parent
ee66b2eef821bde3805734b097b018aa6b321512
download
develop.tar.gz

feat(build): add build script to build binary and docs in release mode



Diff

 build.sh | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/build.sh b/build.sh
new file mode 100755
index 0000000..7870e6b
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,10 @@
#!/bin/env bash

# build the application
cargo build --release

# build to the release directory
mkdir -p $PWD/target/release
pandoc --standalone --to man $PWD/doc/man/gmss.1.md -o $PWD/target/release/gmss.1

echo "Finished building man pages to $PWD/target/release/gmss.1"
\ No newline at end of file