mirror of
https://github.com/containers/podman.git
synced 2025-12-14 11:00:10 +08: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>
10 lines
103 B
Bash
Executable File
10 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
|