index : gmss.git

ascending towards madness

#!/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"