File tree Expand file tree Collapse file tree 3 files changed +23
-8
lines changed Expand file tree Collapse file tree 3 files changed +23
-8
lines changed Original file line number Diff line number Diff line change @@ -394,3 +394,4 @@ The `rl-prune` tool supports the following parameters.
394394<!-- 2024-08-14: Spectra Assure CLI 2.3.2 has been released; rl-scanner v3.1.2 -->
395395<!-- 2024-08-29: Spectra Assure CLI 2.3.3 has been released; rl-scanner v3.1.3 -->
396396<!-- 2024-09-12: Spectra Assure CLI 2.3.4 has been released; rl-scanner v3.1.4 -->
397+ <!-- 2024-09-26: Spectra Assure CLI 2.4.0 has been released; rl-scanner v3.2.0 -->
Original file line number Diff line number Diff line change 22LIC_FILE := ~/.envfile_rl-scanner.docker
33
44ifeq ($(strip $(RLSECURE_ENCODED_LICENSE)),)
5- RLSECURE_ENCODED_LICENSE:= $(shell source $(LIC_FILE); echo $${RLSECURE_ENCODED_LICENSE} )
6- $(info loading licence from $(LIC_FILE))
7- export RLSECURE_ENCODED_LICENSE
5+ RLSECURE_ENCODED_LICENSE:= $(shell source $(LIC_FILE); echo $${RLSECURE_ENCODED_LICENSE} )
6+ $(info loading licence from $(LIC_FILE))
7+ export RLSECURE_ENCODED_LICENSE
88endif
9+
910ifeq ($(strip $(RLSECURE_ENCODED_LICENSE)),)
10- $(error mandatory RLSECURE_ENCODED_LICENSE not set!)
11+ $(error mandatory RLSECURE_ENCODED_LICENSE not set!)
1112endif
1213
1314ifeq ($(strip $(RLSECURE_SITE_KEY)),)
14- RLSECURE_SITE_KEY := $(shell source $(LIC_FILE); echo $${RLSECURE_SITE_KEY} )
15- $(info loading sete_key from $(LIC_FILE))
16- export RLSECURE_SITE_KEY
15+ RLSECURE_SITE_KEY := $(shell source $(LIC_FILE); echo $${RLSECURE_SITE_KEY} )
16+ $(info loading sete_key from $(LIC_FILE))
17+ export RLSECURE_SITE_KEY
18+
1719endif
1820ifeq ($(strip $(RLSECURE_SITE_KEY)),)
19- $(error mandatory RLSECURE_SITE_KEY not set!)
21+ $(error mandatory RLSECURE_SITE_KEY not set!)
2022endif
2123
2224
25+ build-test: build test clean
26+
27+ build:
28+ make build
29+
30+ test:
31+ make test
32+
33+ clean:
34+ make clean
35+
2336all:
2437 make all
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ ReportFormatLIst: List[str] = [
3535 "rl-json" ,
3636 "rl-checks" ,
3737 "rl-cve" ,
38+ "rl-uri" , # new 2024-09-26
3839 "all" ,
3940]
4041
You can’t perform that action at this time.
0 commit comments