_setup-folder.bat 479 B

1234567891011121314
  1. @echo off
  2. REM this will link the TIC-80\repo folder to this folder (wherever this is).
  3. fsutil reparsepoint query %APPDATA%\com.nesbox.tic\TIC-80\repo | find "Symbolic Link" >nul && goto :doneNoAction || mklink /D %APPDATA%\com.nesbox.tic\TIC-80\repo %CD%
  4. :doneAction
  5. echo Link created. Access /repo in TIC-80 to view these repository files.
  6. goto :doneDone
  7. :doneNoAction
  8. echo Link already exists. Access /repo in TIC-80 to view these repository files.
  9. goto :doneDone
  10. :doneDone