zzarchive-generator-fsharp icon indicating copy to clipboard operation
zzarchive-generator-fsharp copied to clipboard

Invalid path in build.cmd of FsLabJournal template

Open aprooks opened this issue 9 years ago • 0 comments

if "%1" == "quickrun" (
  ../packages\FAKE\tools\FAKE.exe run --fsiargs -d:NO_FSI_ADDPRINTER build.fsx
) else (
  ../.paket\paket.bootstrapper.exe
  if errorlevel 1 (
    exit /b %errorlevel%
  )
  if not exist paket.lock (
    ../.paket\paket.exe install
  ) else (
    ../.paket\paket.exe restore
  )
  if errorlevel 1 (
    exit /b %errorlevel%
  )
  ../packages\FAKE\tools\FAKE.exe %* --fsiargs -d:NO_FSI_ADDPRINTER build.fsx
)

these ../ should be changed to ..\

aprooks avatar Nov 02 '15 10:11 aprooks