forgegit 1.5.6 → 1.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forgegit",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "description": "Universal Git bootstrap kit for Windows",
5
5
  "bin": {
6
6
  "forge": "./tools/bin/forge.cmd"
@@ -6,6 +6,13 @@ REM --- FORGE_HOME desde tools/bin/ ---
6
6
  for %%I in ("%~dp0..\..") do set "FORGE_HOME=%%~fI"
7
7
  set "TARGET=%CD%"
8
8
 
9
+ REM --- Deteccion de proyecto local ---
10
+ REM Si existe forge.cmd en el directorio actual, delegar a el
11
+ if exist "%TARGET%\forge.cmd" (
12
+ call "%TARGET%\forge.cmd" %*
13
+ exit /b %ERRORLEVEL%
14
+ )
15
+
9
16
  REM --- Subcomandos ---
10
17
  if /i "%~1"=="update" goto :update
11
18
  if /i "%~1"=="help" goto :help