Skip to content

Commit 6c8d806

Browse files
authored
Feature/scan project (#201)
* The (--sources) argument can now handle GIT repo, zip, and directory scans. - removed (-d | --directory option - removed (-r | --repo-url) option - NOTE: this assumes compressed files are of type (.zip) - NOTE: this assumes GIT repo URLS start with (https:// or http://) - Removed extra message when create scan: "ERROR SENDING THE SCAN" * Correcting linting issues. * Linting correction. * - Corrected (--sources) help. * - Updated to RC10
1 parent d47bec4 commit 6c8d806

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ jobs:
197197
name: Publish GitHub release
198198
command: |
199199
VERSION=$(./bin/cx version)
200-
VERSION="2.0.0_RC9"
200+
VERSION="2.0.0_RC10"
201201
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} ./bin/
202202
- save_cache: # Store cache in the /go/pkg directory
203203
key: go-mod-v1-{{ checksum "go.sum" }}

internal/params/flags.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ const (
3737
)
3838

3939
const (
40-
Version = "2.0.0_RC9"
40+
Version = "2.0.0_RC10"
4141
)

0 commit comments

Comments
 (0)