We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c31e331 commit 2cecfb4Copy full SHA for 2cecfb4
apps/web/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@courselit/web",
3
- "version": "0.63.2",
+ "version": "0.63.3",
4
"private": true,
5
"scripts": {
6
"dev": "next dev --turbopack",
release.sh
@@ -6,6 +6,12 @@ if [ $# -eq 0 ]; then
exit 1
7
fi
8
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
+
15
# # Check if the argument is valid
16
# if [ "$1" != "patch" ] && [ "$1" != "minor" ]; then
17
# echo "Error: Invalid argument. Please use 'patch' or 'minor'."
0 commit comments