We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f72bd6b commit 60ab299Copy full SHA for 60ab299
entrypoint.sh
@@ -2,9 +2,11 @@
2
3
# if path to analyze is provided we symlink it to /source so the default phpstan config works
4
if [ ! -z "$1" ]; then
5
- sh -c "ln -s $1 /source"
+ echo "linking $PWD/$1 to /source"
6
+ sh -c "ln -s $PWD/$1 /source"
7
else # if no custom path is specified we symlink the default checkout location to /source
- sh -c "ln -s /github/workflow /source"
8
+ echo "linking $PWD to /source"
9
+ sh -c "ln -s $PWD /source"
10
fi
11
12
sh -c "analyze $*"
0 commit comments