Browse Source

Merge branch 'master' of https://git.pixelbath.com/pixelbath/tic80-stuff

pixelbath 2 years ago
parent
commit
730414476e
1 changed files with 9 additions and 0 deletions
  1. 9 0
      _setup-folder.sh

+ 9 - 0
_setup-folder.sh

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