File tree 3 files changed +8
-3
lines changed
3 files changed +8
-3
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ uninstall:
30
30
xargs rm -fv < build/install_manifest.txt
31
31
32
32
tag :
33
- git tag v" ` cat DOCKER_VERSION ` "
33
+ git tag v" ` sh tools/extract_version.sh ` "
34
34
35
35
xcode :
36
36
cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_TLS=1 -DUSE_WS=1 -DUSE_TEST=1 -GXcode && open ixwebsocket.xcodeproj
@@ -41,11 +41,14 @@ xcode_openssl:
41
41
.PHONY : docker
42
42
43
43
NAME := bsergean/ws
44
- TAG := $(shell cat DOCKER_VERSION )
44
+ TAG := $(shell sh tools/extract_version.sh )
45
45
IMG := ${NAME}:${TAG}
46
46
LATEST := ${NAME}:latest
47
47
BUILD := ${NAME}:build
48
48
49
+ print_version :
50
+ @echo ' IXWebSocket version =>' ${TAG}
51
+
49
52
docker_test :
50
53
docker build -f docker/Dockerfile.debian -t bsergean/ixwebsocket_test:build .
51
54
Original file line number Diff line number Diff line change
1
+ # /bin/sh
2
+
3
+ grep VERSION ixwebsocket/IXWebSocketVersion.h | awk ' {print $3}' | tr -d \"
You can’t perform that action at this time.
0 commit comments