Fix --scripts path in test helper scripts

This commit is contained in:
Jason Perkins 2014-10-22 14:48:22 -04:00
parent 0efa24492d
commit 3104421fc3
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
#!/bin/sh
cd `dirname $0` && ../bin/debug/premake5 /file=../premake5.lua /scripts=../src $1 $2 $3 test
cd `dirname $0` && ../bin/debug/premake5 /file=../premake5.lua /scripts=.. $1 $2 $3 test

View File

@ -1,4 +1,4 @@
@echo off
pushd "%~dp0"
..\bin\debug\premake5.exe /scripts=..\src /file=..\premake5.lua %* test
..\bin\debug\premake5.exe /scripts=.. /file=..\premake5.lua %* test
popd