mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-16 12:56:31 +00:00
35 lines
875 B
Fish
35 lines
875 B
Fish
set det_os "unknown"
|
|
|
|
switch (uname)
|
|
case "Darwin"
|
|
set det_os "mac"
|
|
case "Linux"
|
|
set det_os "linux"
|
|
case '*'
|
|
set det_os "unknown"
|
|
end
|
|
|
|
# opt directory
|
|
set -gx PATH /opt/local/bin /opt/local/sbin $PATH
|
|
|
|
# Android SDK
|
|
if [ $det_os == "linux" ]
|
|
set android_sdk $HOME/workspace/adt-bundle-linux/sdk
|
|
|
|
set -gx GOROOT /usr/local/go
|
|
set -gx PATH $PATH $GOROOT/bin
|
|
else if [ $det_os == "mac" ]
|
|
set android_sdk $HOME/workspace/android-sdk-macosx
|
|
# set PATH $HOME/Library/Python/2.7/bin $PATH
|
|
end
|
|
|
|
set -gx ANDROID_HOME $android_sdk
|
|
set -gx PATH $PATH $android_sdk/platform-tools $android_sdk/tools
|
|
|
|
set -gx PATH $HOME/bin $PATH
|
|
|
|
#[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
|
|
|
|
# Increase memory sizes for java using Ant
|
|
set -gx ANT_OPTS "-Xmx2048m -Xms512m"
|