Do not lowercase source extension input

Fix warnings in parseExtensionSource in utils.ts

Fix add_lib_log in source.sh
This commit is contained in:
Shivam Mathur
2021-04-21 04:38:37 +05:30
parent fe944a16b5
commit 7e5351f399
3 changed files with 11 additions and 4 deletions

View File

@ -13,8 +13,7 @@ parse_args() {
# Function to log if a library is installed
add_lib_log() {
lib=$1
output=$2
if [ "x$output" != "x" ]; then
if check_lib "$lib"; then
add_log "${tick:?}" "$lib" "Installed"
else
add_log "${cross:?}" "$lib" "Could not install $lib"