This commit is contained in:
Steven Penny 2015-12-07 21:09:20 -06:00
parent 0e1df15a9e
commit fd985e7a34
1 changed files with 6 additions and 3 deletions

View File

@ -128,9 +128,12 @@ function find-workspace {
# work wherever setup worked last, if possible
cache=$(awk '
/last-cache/ {
getline
print $1
BEGIN {
RS = "\n\\<"
FS = "\n\t"
}
$1 == "last-cache" {
print $2
}
' /etc/setup/setup.rc)