Skip to content

Commit

Permalink
Fix file var in prep-dev function
Browse files Browse the repository at this point in the history
  • Loading branch information
pwtyler committed Dec 20, 2023
1 parent 85789eb commit 294d61f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .bin/src/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ process_file(){
return
fi
# Convert the filename to lowercase for case-insensitive comparison
LC_FILE_PATH=$(echo "$FILE_PATH" | tr '[:upper:]' '[:lower:]')
LC_FILE_PATH=$(echo "$FILE" | tr '[:upper:]' '[:lower:]')

echo "Processing file '${FILE}'..."
if [[ "$LC_FILE_PATH" == "$BASE_DIR/package-lock.json" || "$LC_FILE_PATH" == "$BASE_DIR/package.json" ]];then
Expand Down

0 comments on commit 294d61f

Please sign in to comment.