File tree Expand file tree Collapse file tree 2 files changed +20
-11
lines changed Expand file tree Collapse file tree 2 files changed +20
-11
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
- BINARY_VERSION=` grep ' const binaryVersion' src/support/parser.ts | sed -E ' s/.*"([^"]+)".*/\1/' `
3
+ # BINARY_VERSION=`grep 'const binaryVersion' src/support/parser.ts | sed -E 's/.*"([^"]+)".*/\1/'`
4
4
5
- read -p " Correct binary version (y/n)? $BINARY_VERSION " confirmation
5
+ # read -p "Correct binary version (y/n)? $BINARY_VERSION " confirmation
6
6
7
- if [ " $confirmation " != " y" ]; then
8
- echo " Please update the binary version in src/support/parser.ts"
9
- exit 1
10
- fi
7
+ # if [ "$confirmation" != "y" ]; then
8
+ # echo "Please update the binary version in src/support/parser.ts"
9
+ # exit 1
10
+ # fi
11
11
12
- read -p " Did you update the changelog? (y/n)? " confirmation
12
+ # read -p "Did you update the changelog? (y/n)? " confirmation
13
13
14
- if [ " $confirmation " != " y" ]; then
15
- echo " Maybe update the changelog before publishing."
16
- exit 1
17
- fi
14
+ # if [ "$confirmation" != "y" ]; then
15
+ # echo "Maybe update the changelog before publishing."
16
+ # exit 1
17
+ # fi
Original file line number Diff line number Diff line change 5
5
echo " 🚀 Laravel VS Code Extension Release"
6
6
echo " =========================================="
7
7
8
+ BINARY_VERSION=` grep ' const binaryVersion' src/support/parser.ts | sed -E ' s/.*"([^"]+)".*/\1/' `
9
+
10
+ read -p " Correct binary version (y/n)? $BINARY_VERSION " confirmation
11
+
12
+ if [ " $confirmation " != " y" ]; then
13
+ echo " Please update the binary version in src/support/parser.ts"
14
+ exit 1
15
+ fi
16
+
8
17
echo
9
18
echo " Current version: $( node -p " require('./package.json').version" ) "
10
19
echo
You can’t perform that action at this time.
0 commit comments