sysinfo: Fix not a git repository error (#6890)

* sysinfo: Fix `not a git repository` error

* Should be `CREW_LIB_PATH`

* Bump version

* Correct version
This commit is contained in:
supechicken
2022-03-21 00:01:12 +08:00
committed by GitHub
parent a578c66136
commit a0bcbd5842
2 changed files with 2 additions and 2 deletions

View File

@@ -1823,7 +1823,7 @@ def sysinfo_command(args)
- Chromebrew prefix: `#{CREW_PREFIX}`
- Chromebrew libdir: `#{CREW_LIB_PREFIX}`
- Last update in local repository: `#{`git log --pretty=format:"%h: %s" HEAD^..HEAD`}`
- Last update in local repository: `#{`cd #{CREW_LIB_PATH}; git log --pretty=format:"%h: %s" HEAD^..HEAD`}`
- OS variant: `#{lsb_release['CHROMEOS_RELEASE_NAME']}`
- OS version: `#{lsb_release['CHROMEOS_RELEASE_BUILDER_PATH']}`

View File

@@ -1,6 +1,6 @@
# Defines common constants used in different parts of crew
CREW_VERSION = '1.23.3'
CREW_VERSION = '1.23.4'
ARCH_ACTUAL = `uname -m`.chomp
# This helps with virtualized builds on aarch64 machines