Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a0b51744 authored by nebkat's avatar nebkat Committed by Gerrit Code Review
Browse files

cout: move to $out

Change-Id: I3b5bf8a5f62dcdf267662bb97a2073150152cfa6
parent 378c1aec
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ Invoke ". build/envsetup.sh" from your shell to add the following functions to y
- lunch:   lunch <product_name>-<build_variant>
- tapas:   tapas [<App1> <App2> ...] [arm|x86|mips] [eng|userdebug|user]
- croot:   Changes directory to the top of the tree.
- cout:    Changes directory to out.
- m:       Makes from the top of the tree.
- mm:      Builds all of the modules in the current directory.
- mmp:     Builds all of the modules in the current directory and pushes them to the device.
@@ -868,6 +869,15 @@ function croot()
    fi
}

function cout()
{
    if [  "$OUT" ]; then
        cd $OUT
    else
        echo "Couldn't locate out directory.  Try setting OUT."
    fi
}

function cproj()
{
    TOPFILE=build/core/envsetup.mk