mirror of
https://github.com/stucki/docker-lineageos
synced 2024-12-19 17:12:29 -05:00
12 lines
221 B
Bash
Executable File
12 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd $(dirname $0)
|
|
|
|
SOURCE=$(pwd)/android
|
|
|
|
test -d $SOURCE || mkdir $SOURCE
|
|
|
|
docker run -v $SOURCE:/home/cmbuild/android -i -t stucki/cyanogenmod sh -c "exec >/dev/tty 2>/dev/tty </dev/tty && /bin/bash"
|
|
|
|
exit $?
|