summaryrefslogtreecommitdiff
path: root/contrib/msi/podman.bat
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2019-09-16 09:23:57 -0700
committerJhon Honce <jhonce@redhat.com>2019-09-19 14:14:38 -0700
commit96bcf8cecc92c70cdb86ee288eb57795ef6395e7 (patch)
tree5dc7417b2e7c583ed7f9ddac3311d8d17c7b9558 /contrib/msi/podman.bat
parent408f2780a1dd94f99fe36be4573a9887e6c74cf7 (diff)
downloadpodman-96bcf8cecc92c70cdb86ee288eb57795ef6395e7.tar.gz
podman-96bcf8cecc92c70cdb86ee288eb57795ef6395e7.tar.bz2
podman-96bcf8cecc92c70cdb86ee288eb57795ef6395e7.zip
Support podman-remote help on windows
* Update scipts to produce darwin and windows output * Update batch file to re-direct help requests to browser * Add pandoc filter for markdown to html links Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'contrib/msi/podman.bat')
-rw-r--r--contrib/msi/podman.bat25
1 files changed, 25 insertions, 0 deletions
diff --git a/contrib/msi/podman.bat b/contrib/msi/podman.bat
index 091c1c4c4..e0c7e1137 100644
--- a/contrib/msi/podman.bat
+++ b/contrib/msi/podman.bat
@@ -3,6 +3,14 @@ setlocal enableextensions
title Podman
+if "%1" EQU "" (
+ goto run_help
+)
+
+if "%1" EQU "/?" (
+ goto run_help
+)
+
:: If remote-host is given on command line -- use it
setlocal enabledelayedexpansion
for %%a in (%*) do (
@@ -39,5 +47,22 @@ set /p user="Please enter the remote user name: "
:run_podman
endlocal
podman-remote-windows.exe %*
+goto end
+
+:run_help
+set run=start "Podman Help" /D "%~dp0" /B
+
+if not "%3" == "" (
+ %run% "podman-%2-%3.html
+ goto end
+)
+
+if not "%2" == "" (
+ %run% "podman-%2.html
+ goto end
+)
+
+%run% "%podman-remote.html"
+goto end
:End