mirror of
https://github.com/rancher/os.git
synced 2025-06-21 20:47:04 +00:00
8 lines
134 B
Bash
Executable File
8 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if ! docker info >/dev/null 2>&1 && [ -x "$(which wrapdocker)" ]; then
|
|
wrapdocker
|
|
fi
|
|
|
|
exec $(dirname $0)/../build.sh
|