Files
zeitlaeufer/deployProject.sh
2025-10-01 09:43:41 +02:00

10 lines
272 B
Bash

#!/usr/bin/env bash
set -uo pipefail
# when executed as executable file in "git for windows" bash some things won't work, so always run with prefixed command
if [[ ! -e dist ]]; then
mkdir dist;
fi
rm -r dist/* 2>/dev/null;
jar cf ../dist/zeitlaeufer.jar target/**/*;