diff options
| author | mo khan <mo.khan@gmail.com> | 2020-03-31 13:28:27 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-04-01 10:05:54 -0600 |
| commit | 4e4462a6f2052fc7cc5ffe1b4b677ef1af1749b9 (patch) | |
| tree | e52b1d2e83000aa5d4cb050fa8d2f0cc647b94be /run.sh | |
| parent | d6b721605bfe75d735abe80f365822075f49fa23 (diff) | |
Pull package info from sources in Pipfile.lock
* Exclude dependencies in "develop" group"
* Install pipenv by default
* Use .venv to match the default location as pipenv
* Use pip-licenses to detect licenses in Pipfile project
* Add variation of the MIT License
* Redirect asdf install stdout to /dev/null
* Add CHANGELOG entry and bump version
Diffstat (limited to 'run.sh')
| -rwxr-xr-x | run.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -11,9 +11,11 @@ export CI_DEBUG_TRACE=${CI_DEBUG_TRACE:='false'} export DOTNET_CLI_TELEMETRY_OPTOUT=1 export HISTFILESIZE=0 export HISTSIZE=0 +export LANG=C.UTF-8 export LICENSE_FINDER_CLI_OPTS=${LICENSE_FINDER_CLI_OPTS:=--no-debug} export LM_REPORT_FILE=${LM_REPORT_FILE:-'gl-license-management-report.json'} export MAVEN_CLI_OPTS="${MAVEN_CLI_OPTS:--DskipTests}" +export PIPENV_VENV_IN_PROJECT=1 export PREPARE="${PREPARE:---prepare-no-fail}" export RECURSIVE='--no-recursive' export RUBY_GC_HEAP_INIT_SLOTS=800000 @@ -45,6 +47,7 @@ function debug_env() { function scan_project() { gem install -f --silent "$LM_HOME/pkg/*.gem" license_management ignored_groups add development + license_management ignored_groups add develop license_management ignored_groups add test echo license_management report "$@" # shellcheck disable=SC2068 @@ -81,7 +84,7 @@ function prepare_dotnet() { function prepare_project() { if [[ -z ${SETUP_CMD:-} ]]; then - asdf install + asdf install 1> /dev/null prepare_javascript || true prepare_golang || true |
