19 lines
924 B
Bash
Executable File
19 lines
924 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Linux toolchain environment for the JiZhi workspace.
|
|
export JAVA_HOME=/home/nanxunai/.local/lib/jvm/zulu-21
|
|
export ANDROID_HOME=/home/nanxunai/Android/Sdk
|
|
export ANDROID_SDK_ROOT=/home/nanxunai/Android/Sdk
|
|
export DOTNET_ROOT=/home/nanxunai/.dotnet
|
|
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
export DOTNET_NOLOGO=1
|
|
export FLUTTER_ROOT=/home/nanxunai/flutter
|
|
export GIT_EXEC_PATH=/home/nanxunai/.local/usr/lib/git-core
|
|
export LD_LIBRARY_PATH="/home/nanxunai/.local/usr/lib/x86_64-linux-gnu${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
|
|
|
|
# The Flutter mirrors keep dependency resolution reliable from mainland China.
|
|
export PUB_HOSTED_URL=https://pub.flutter-io.cn
|
|
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
|
|
|
|
export PATH="/home/nanxunai/.local/bin:/home/nanxunai/.dotnet:/home/nanxunai/flutter/bin:/home/nanxunai/Android/Sdk/platform-tools:/home/nanxunai/Android/Sdk/cmdline-tools/latest/bin:$PATH"
|