Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alex28sh committed Aug 22, 2024
1 parent 73afa19 commit 68e33e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/scripts/test-new.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ for f in $1; do
# Check if the file is in the known directory
echo "check"
echo $f
if [[ "$f" == "$DIRECTORY/*" ]]; then
if [[ $f == *.py ]]; then
echo "check1"
echo $f
if [[ "$f" == "*.py" ]]; then
if [[ $f == $DIRECTORY/* ]]; then
echo $f
file_count=$((file_count+1))
fi
fi
done

echo "Staring the check"
echo "Starting the check"
for f in $1
do
# Check if the file is in the known directory
Expand Down

0 comments on commit 68e33e0

Please sign in to comment.