Skip to content

Commit

Permalink
Improve MacOS launch script
Browse files Browse the repository at this point in the history
- Pre-configure MacOS Volume mount point
- Use " in case $HOME path have space
  • Loading branch information
gagarine authored Feb 13, 2021
1 parent f74c239 commit 74960ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web-ui/src/main/resources/studio-macos.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/sh

STUDIO_PATH="`dirname \"$0\"`"
DOT_STUDIO=$HOME/.studio
DOT_STUDIO="$HOME/.studio"

# Configure mount point of the device
FS_MOUNTPOINT=
FS_MOUNTPOINT=/Volumes/LUNII

# Make sure the .studio subdirectories exist
if [ ! -d $DOT_STUDIO/agent ]; then mkdir -p $DOT_STUDIO/agent; fi
Expand Down

0 comments on commit 74960ad

Please sign in to comment.