11 lines
160 B
Bash
Executable File
11 lines
160 B
Bash
Executable File
#!/bin/bash
|
|
|
|
gitclone=git@github.com:nextcloud/docker.git
|
|
|
|
if [[ ! -d podman ]]
|
|
then
|
|
git clone $gitclone podman
|
|
fi
|
|
|
|
echo "Not completed see REAMDE.md hack"
|