_setup-folder.sh 359 B

123456789
  1. #!/bin/sh
  2. # this will link the TIC-80\repo folder to this folder (wherever this is).
  3. if [ ! -L "$DIRECTORY" ]; then
  4. ln -s "$(pwd)" ~/Library/Application\ Support/com.nesbox.tic/TIC-80/repo
  5. echo Link created. Access /repo in TIC-80 to view these repository files.
  6. else
  7. echo Link already exists. Access /repo in TIC-80 to view these repository files.
  8. fi