mirror of
https://github.com/containers/podman.git
synced 2025-11-28 17:18:58 +08:00
Use filepath utility instead of generic string replace to convert path on Windows. This also separates OS specific implementations to separate compilation sources and removes redundant check for virtualization provider on Windows platform. Signed-off-by: Arthur Sengileyev <arthur.sengileyev@gmail.com>
7 lines
117 B
Bash
Executable File
7 lines
117 B
Bash
Executable File
#!/bin/bash
|
|
if [[ "$@" == "env" ]]; then
|
|
printenv DOCKER_HOST DOCKER_BUILDKIT
|
|
exit 0
|
|
fi
|
|
echo "arguments: $@"
|