We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d29815 commit d5700f9Copy full SHA for d5700f9
test/bin/verify-languages.sh
@@ -5,7 +5,6 @@ verify_python() {
5
echo "Verifying Python..."
6
python --version && which python
7
pip --version && which pip
8
- conda --version && which conda
9
}
10
11
verify_nodejs() {
@@ -34,11 +33,18 @@ verify_rust() {
34
33
cargo --version && which cargo
35
36
+verify_ruby() {
37
+ echo "Verifying Ruby..."
38
+ ruby --version && which ruby
39
+ gem --version && which gem
40
+}
41
+
42
echo "[agentbox] Verifying language environments..."
43
44
verify_python
45
verify_nodejs
46
verify_go
47
verify_rust
48
+verify_ruby
49
50
echo "[agentbox] All language environments verified successfully!"
0 commit comments