mirror of
https://github.com/krisk/Fuse.git
synced 2025-12-08 21:26:15 +00:00
15 lines
217 B
Bash
Executable File
15 lines
217 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# abort on errors
|
|
set -e
|
|
|
|
read -p "Do you want to create a release? (y/n) " -n 1 -r
|
|
|
|
echo
|
|
|
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
yarn standard-version -a
|
|
else
|
|
echo "\033[0;31mCancelling...\033[0m"
|
|
fi
|