mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-10 19:05:42 +00:00
path_helper(8) appends the contents of /etc/paths.d/podman-pkg to the PATH env [NO NEW TESTS NEEDED] Signed-off-by: Anjan Nath <kaludios@gmail.com>
9 lines
103 B
Bash
Executable file
9 lines
103 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rm -rf /opt/podman
|
|
|
|
if [ ! -d "/etc/paths.d" ]; then
|
|
mkdir -p /etc/paths.d
|
|
fi
|