Skip to content

Commit

Permalink
fixing ./ prefix in dir path
Browse files Browse the repository at this point in the history
  • Loading branch information
shashitnak committed Jun 18, 2024
1 parent 93f3e20 commit 45212be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ echo "DIRS: $(ls)"
mkdir -p /app
cp -r ./* /app
TC_CONFIG_DIR_ROOT=/app
TC_CONFIG_DIR=$(dirname $TAILCALL_CONFIG)
TC_CONFIG_DIR=$(dirname $TAILCALL_CONFIG | sed 's|^\./||')
echo $TC_CONFIG_DIR
TC_CONFIG_NAME=$(basename $TAILCALL_CONFIG)
EXTENSION=$(echo $TC_CONFIG_NAME | tr '.' '\n' | tail -n 1)

Expand Down

0 comments on commit 45212be

Please sign in to comment.