mirror of
https://github.com/maplibre/martin.git
synced 2024-12-20 13:21:59 +03:00
ff7c31e16f
* write custom git pre-push via justfile * fix tests/debug.html incorrectly loading test page * minor cleanup of the obsolete just targets
18 lines
347 B
Bash
Executable File
18 lines
347 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# See https://github.com/rhysd/cargo-husky#readme
|
|
#
|
|
|
|
set -e
|
|
|
|
if ! command -v just > /dev/null; then
|
|
echo "`just` is not installed. See https://github.com/casey/just#readme for installation instructions, or just run"
|
|
echo ""
|
|
echo " cargo install just"
|
|
echo ""
|
|
exit 1
|
|
fi
|
|
|
|
echo "+just git-pre-push"
|
|
just git-pre-push
|