diff options
| author | mo khan <mo.khan@gmail.com> | 2020-08-10 09:43:50 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-08-10 09:43:50 -0600 |
| commit | 1788269fb9b275cfff12ff476c1a41399caedbd8 (patch) | |
| tree | 92325ad144d6fc5aba8cf936b3ee2ae058700224 | |
| parent | 935277844dbcb0aaca2223d7a1beb54172a76dbc (diff) | |
Unpack Rust deb package before asdf install
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | Gemfile.lock | 2 | ||||
| -rw-r--r-- | lib/license/management/version.rb | 2 | ||||
| -rwxr-xr-x | run.sh | 2 |
4 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fb5fdb..b650a70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # GitLab License management changelog +## v3.21.1 + +- Unpack Rust Debian package before asdf attempts to compile and install it. (!205) + ## v3.21.0 - Provide limited network connectivity for [cargo](https://doc.rust-lang.org/cargo/) projects (!201) diff --git a/Gemfile.lock b/Gemfile.lock index f37952b..8cfbf1d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -8,7 +8,7 @@ GIT PATH remote: . specs: - license-management (3.21.0) + license-management (3.21.1) license_finder (~> 6.6.0) GEM diff --git a/lib/license/management/version.rb b/lib/license/management/version.rb index e3de501..c9f2602 100644 --- a/lib/license/management/version.rb +++ b/lib/license/management/version.rb @@ -2,6 +2,6 @@ module License module Management - VERSION = '3.21.0' + VERSION = '3.21.1' end end @@ -75,6 +75,8 @@ function prepare_python() { } function prepare_tools() { + dpkg -i /opt/toolcache/rust*.deb + if ! asdf current 2> >(grep -q 'is not installed'); then echo "Installing missing tools…" asdf install |
