Skip to content

Commit

Permalink
Merge 8fe9caf into a6f1818
Browse files Browse the repository at this point in the history
  • Loading branch information
melissa committed Jan 26, 2016
2 parents a6f1818 + 8fe9caf commit 6a5c6ee
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ext/windows/facter.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@echo off
SETLOCAL
if exist "%~dp0environment.bat" (
call "%~dp0environment.bat" %0 %*
) else (
SET PATH=%~dp0;%PATH%
)
facter.exe %*
5 changes: 5 additions & 0 deletions ext/windows/facter_interactive.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo off
echo Running Facter on demand ...
cd "%~dp0"
call .\facter.bat %*
PAUSE
7 changes: 7 additions & 0 deletions ext/windows/run_facter_interactive.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@echo Running facter on demand ...
if exist "%~dp0environment.bat" (
call "%~dp0environment.bat" %0 %*
) else (
SET PATH=%~dp0;%PATH%
)
elevate.exe "%~dp0facter_interactive.bat"

0 comments on commit 6a5c6ee

Please sign in to comment.