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