Skip to content
  • This project
    • Loading...
  • Sign in

Jabis Sevón / gun-multiserver

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • gun-multiserver
  • node_modules
  • gun
  • node_modules
  • .bin
  • _mocha.cmd
  • Jabis Sevón's avatar
    we need to RM this after @amark patches · 22d83f95
    Jabis Sevón committed 2020-05-05 01:49:59 +0700
    22d83f95
_mocha.cmd 259 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
@ECHO off
SETLOCAL
CALL :find_dp0

IF EXIST "%dp0%\node.exe" (
  SET "_prog=%dp0%\node.exe"
) ELSE (
  SET "_prog=node"
  SET PATHEXT=%PATHEXT:;.JS;=;%
)

"%_prog%"  "%dp0%\..\mocha\bin\_mocha" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b