Skip to content

Commit

Permalink
v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rl-devops committed Sep 26, 2024
1 parent 49dfecd commit c9cc571
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -394,3 +394,4 @@ The `rl-prune` tool supports the following parameters.
<!-- 2024-08-14: Spectra Assure CLI 2.3.2 has been released; rl-scanner v3.1.2 -->
<!-- 2024-08-29: Spectra Assure CLI 2.3.3 has been released; rl-scanner v3.1.3 -->
<!-- 2024-09-12: Spectra Assure CLI 2.3.4 has been released; rl-scanner v3.1.4 -->
<!-- 2024-09-26: Spectra Assure CLI 2.4.0 has been released; rl-scanner v3.2.0 -->
29 changes: 21 additions & 8 deletions makefile.intern
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,36 @@
LIC_FILE := ~/.envfile_rl-scanner.docker

ifeq ($(strip $(RLSECURE_ENCODED_LICENSE)),)
RLSECURE_ENCODED_LICENSE:= $(shell source $(LIC_FILE); echo $${RLSECURE_ENCODED_LICENSE} )
$(info loading licence from $(LIC_FILE))
export RLSECURE_ENCODED_LICENSE
RLSECURE_ENCODED_LICENSE:= $(shell source $(LIC_FILE); echo $${RLSECURE_ENCODED_LICENSE} )
$(info loading licence from $(LIC_FILE))
export RLSECURE_ENCODED_LICENSE
endif

ifeq ($(strip $(RLSECURE_ENCODED_LICENSE)),)
$(error mandatory RLSECURE_ENCODED_LICENSE not set!)
$(error mandatory RLSECURE_ENCODED_LICENSE not set!)
endif

ifeq ($(strip $(RLSECURE_SITE_KEY)),)
RLSECURE_SITE_KEY := $(shell source $(LIC_FILE); echo $${RLSECURE_SITE_KEY} )
$(info loading sete_key from $(LIC_FILE))
export RLSECURE_SITE_KEY
RLSECURE_SITE_KEY := $(shell source $(LIC_FILE); echo $${RLSECURE_SITE_KEY} )
$(info loading sete_key from $(LIC_FILE))
export RLSECURE_SITE_KEY

endif
ifeq ($(strip $(RLSECURE_SITE_KEY)),)
$(error mandatory RLSECURE_SITE_KEY not set!)
$(error mandatory RLSECURE_SITE_KEY not set!)
endif


build-test: build test clean

build:
make build

test:
make test

clean:
make clean

all:
make all
1 change: 1 addition & 0 deletions scripts/rl-scan
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ ReportFormatLIst: List[str] = [
"rl-json",
"rl-checks",
"rl-cve",
"rl-uri", # new 2024-09-26
"all",
]

Expand Down

0 comments on commit c9cc571

Please sign in to comment.