summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-03-04 16:33:12 -0700
committermo khan <mo.khan@gmail.com>2020-03-04 16:33:12 -0700
commitb821ddaa71e6999518c3379f916f26fa1fd1bc13 (patch)
tree8b42278587d1438406fd71ee3e5aeab5d4b074d4 /config
parentdf5c2cebd4bd4c3c526a33fcd0991aaba165250f (diff)
Switch python/java version in run.sh
Diffstat (limited to 'config')
-rw-r--r--config/.bashrc25
1 files changed, 0 insertions, 25 deletions
diff --git a/config/.bashrc b/config/.bashrc
index f9eed24..466fbee 100644
--- a/config/.bashrc
+++ b/config/.bashrc
@@ -1,17 +1,5 @@
#!/bin/bash
-BUNDLE_JOBS="$(nproc)"
-export BUNDLE_JOBS
-export BUNDLE_PATH="vendor/bundle"
-export BUNDLE_WITHOUT="development test"
-export DOTNET_CLI_TELEMETRY_OPTOUT=1
-export HISTFILESIZE=0
-export HISTSIZE=0
-export RUBY_GC_HEAP_INIT_SLOTS=800000
-export RUBY_GC_MALLOC_LIMIT=79000000
-export RUBY_HEAP_FREE_MIN=100000
-export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
-export RUBY_HEAP_SLOTS_INCREMENT=400000
alias nuget='mono /usr/local/bin/nuget.exe'
function inflate() {
@@ -51,16 +39,3 @@ inflate /usr/share/dotnet.tar.zst /usr/share
while IFS= read -r line; do
asdf global "$line"
done < "$HOME/.tool-versions"
-
-if [ -n "$LM_PYTHON_VERSION" ]; then
- MAJOR_VERSION=$(echo "$LM_PYTHON_VERSION" | cut -d'.' -f1)
- switch_to python "$MAJOR_VERSION"
- python --version
- pip --version
- export LICENSE_FINDER_PYTHON_VERSION="--python-version=$MAJOR_VERSION"
-fi
-
-switch_to java "adopt-openjdk-${LM_JAVA_VERSION:-8}"
-# shellcheck source=/dev/null
-. "$ASDF_DATA_DIR/plugins/java/set-java-home.sh"
-env | sort