mirror of
https://github.com/rancher/os.git
synced 2025-07-18 17:11:04 +00:00
10 lines
124 B
Bash
10 lines
124 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
TAR=${DOWNLOADS}/rootfs.tar
|
||
|
|
||
|
if [ -e $TAR ]; then
|
||
|
cd $(dirname $0)
|
||
|
mkdir -p build
|
||
|
cp $TAR build
|
||
|
fi
|