turbo-sync/publish.sh
2024-12-25 20:38:57 +01:00

13 lines
126 B
Bash
Executable File

#!/bin/bash
if [ -z "$1" ]; then
msg="Updates"
else
msg="$1"
fi
git add .
git commit -m "$msg"
git push
npm publish