Skip to content

Commit

Permalink
Locking WDT and FOLLY on a stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinTimperio committed Nov 10, 2020
1 parent 11d4c1c commit 1154a7e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion build/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@ echo ''

# Fetch Folly
git clone https://github.com/facebook/folly.git $bd/folly
cd $bd/folly
git checkout ca78b4cec2f4c94189d487120d6beae6a86ada65
cd $bd
git checkout $(git describe --abbrev=0 --always)

echo ''
echo '===================================='
Expand All @@ -79,6 +80,9 @@ echo ''

# Clone and Build WDT From Source
git clone https://github.com/facebook/wdt.git $bd/wdt
cd $bd/wdt
git checkout 0184e65ecd50ab337971ac7ddcb2d83f209e0ef0
cd $bd
mkdir $bd_tmp

# Patch CMakeList.txt If Needed
Expand Down
2 changes: 1 addition & 1 deletion core/warp.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def run_macro(name):
args = parser.parse_args()

if args.version:
print('Warp-CLI Version: 3.0.1')
print('Warp-CLI Version: 3.0.2')
os.system('/usr/bin/wdt --version | tr a-z A-Z')
os.system('/bin/echo "FOLLY Version:" `cd /opt/warp-cli/build/folly && /usr/bin/git describe`')

Expand Down

0 comments on commit 1154a7e

Please sign in to comment.