summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Justfile (renamed from justfile)8
1 files changed, 2 insertions, 6 deletions
diff --git a/justfile b/Justfile
index d8e117a..5f5385c 100644
--- a/justfile
+++ b/Justfile
@@ -1,7 +1,7 @@
NAME := "loadbars"
VERSION := "0.7.5"
-default: version documentation perltidy
+default: version perltidy
version:
echo {{VERSION}} > .version
@@ -15,10 +15,6 @@ perltidy:
perltidy -b {{NAME}}
find . -name \*.bak -delete
-documentation:
- pandoc --standalone --to man ./README.md --metadata title="loadbars" --metadata section="1" --metadata date="$(date +%Y-%m-%d)" > ./docs/{{NAME}}.1
- pandoc --from markdown --to plain ./README.md > ./docs/{{NAME}}.txt
-
install DESTDIR="":
#!/usr/bin/env bash
if [ ! -d "{{DESTDIR}}/usr/bin" ]; then
@@ -53,7 +49,7 @@ clean:
rm -Rf nytprof
fi
-release: version documentation perltidy
+release: version perltidy
git add -A
git commit -m 'New release {{VERSION}}'
git tag {{VERSION}}