Sets language env variable when running shell (#5007)

* Sets language env variable when running shell

* Always sets FUZZING_LANGUAGE
This commit is contained in:
Catena cyber 2021-01-19 23:20:39 +01:00 committed by GitHub
parent facd091688
commit 433ddc2337
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -956,6 +956,7 @@ def shell(args):
'FUZZING_ENGINE=' + args.engine,
'SANITIZER=' + args.sanitizer,
'ARCHITECTURE=' + args.architecture,
'FUZZING_LANGUAGE=' + _get_project_language(args.project_name),
]
if args.e: