Skip to content

Commit 2cecfb4

Browse files
author
Rajat
committed
jq check and version update
1 parent c31e331 commit 2cecfb4

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@courselit/web",
3-
"version": "0.63.2",
3+
"version": "0.63.3",
44
"private": true,
55
"scripts": {
66
"dev": "next dev --turbopack",

release.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ if [ $# -eq 0 ]; then
66
exit 1
77
fi
88

9+
# check if jq is installed
10+
if ! command -v jq &> /dev/null; then
11+
echo "jq could not be found. Please install it."
12+
exit 1
13+
fi
14+
915
# # Check if the argument is valid
1016
# if [ "$1" != "patch" ] && [ "$1" != "minor" ]; then
1117
# echo "Error: Invalid argument. Please use 'patch' or 'minor'."

0 commit comments

Comments
 (0)