ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
12 lines
183 B
Bash
12 lines
183 B
Bash
appendToVar prePhases moveBuildDir
|
|
|
|
moveBuildDir() {
|
|
mkdir -p $out/.build
|
|
cd $out/.build
|
|
}
|
|
|
|
appendToVar postPhases removeBuildDir
|
|
|
|
removeBuildDir() {
|
|
rm -rf $out/.build
|
|
}
|