Skip to content

Commit f95edbc

Browse files
authored
Revert version eval on install (#162)
1 parent 4acdafd commit f95edbc

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.circleci/test-deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ jobs:
4747
./config
4848
make
4949
sudo make install
50-
cd ..
5150
- ruby/install:
5251
version: 2.7.6
5352
openssl-path: /usr/local/ssl

src/scripts/install-ruby.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
PARAM_RUBY_VERSION="$(echo "$PARAM_VERSION" | circleci env subst)"
2+
PARAM_RUBY_VERSION=$(eval echo "${PARAM_VERSION}")
33
RUBY_VERSION_MAJOR=$(echo "$PARAM_RUBY_VERSION" | cut -d. -f1)
44
RUBY_VERSION_MINOR=$(echo "$PARAM_RUBY_VERSION" | cut -d. -f2)
55
detected_platform="$(uname -s | tr '[:upper:]' '[:lower:]')"

0 commit comments

Comments
 (0)