diff options
Diffstat (limited to 'bash/platform.sh')
-rw-r--r-- | bash/platform.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bash/platform.sh b/bash/platform.sh index 4929341..67d8525 100644 --- a/bash/platform.sh +++ b/bash/platform.sh @@ -7,3 +7,11 @@ isMac () { isLinux () { [[ `uname` == 'Linux' ]] } + +isMac && { + export MEDIA_PREFIX=/Volumes +} + +isLinux && { + export MEDIA_PREFIX=/run/media/andreh +} |