Skip to content

Commit

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

0 comments on commit 3aa8e2d

Please sign in to comment.