Skip to content

Commit

Permalink
Debug! display path and files
Browse files Browse the repository at this point in the history
  • Loading branch information
o-orand committed Jan 16, 2024
1 parent 7ae4b80 commit aff1c42
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ elif [[ "$GITHUB_REF" == refs/pull/* ]]; then
version=pr-${pull_number}
release=false
fi
echo "Current dir: $PWD"
echo "Current files:"
ls -l

if [[ "$DIR" != "." ]];then
cd $DIR # We ensure we are in the right directory
fi

echo "Current dir: $PWD"
echo "Current files:"
ls -l


PUSH_OPTIONS=""
if [ "${OVERRIDE_EXISTING}" == "true" ];then
PUSH_OPTIONS="$PUSH_OPTIONS --force"
Expand Down

0 comments on commit aff1c42

Please sign in to comment.