Add HOME to the list of crew constants (#3096)

This commit is contained in:
Ed Reel
2019-01-22 11:15:50 -06:00
committed by Chris Thurber
parent 0bd70fef1b
commit ee66247572
2 changed files with 2 additions and 1 deletions

1
crew
View File

@@ -261,6 +261,7 @@ def const (var)
'CREW_NPROC',
'CREW_PREFIX',
'CREW_VERSION',
'HOME',
'USER'
]
vars.each { |var|

View File

@@ -1,6 +1,6 @@
# Defines common constants used in different parts of crew
CREW_VERSION = '1.1.0'
CREW_VERSION = '1.1.1'
ARCH = `uname -m`.strip
ARCH_LIB = if ARCH == 'x86_64' then 'lib64' else 'lib' end