8 lines
87 B
Bash
8 lines
87 B
Bash
|
|
#!/bin/bash -e
|
||
|
|
|
||
|
|
if [ ! $RELEASE ]; then
|
||
|
|
RELEASE='stretch'
|
||
|
|
fi
|
||
|
|
|
||
|
|
./mk-rootfs-$RELEASE.sh
|