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 ea3125d commit 64b5ddfCopy full SHA for 64b5ddf
docker/action/entrypoint.sh
@@ -3,6 +3,9 @@ set -e
3
git config --global --add safe.directory "$GITHUB_WORKSPACE"
4
git config --global --add safe.directory "$GITHUB_WORKSPACE/./.git"
5
6
+if [ ! -f Makefile ]; then
7
+ export PRE_SETUP=true
8
+fi
9
if [ "$1" = "setup" ]; then
10
echo "Running setup"
11
exec make -f lib/setup.mk
@@ -11,8 +14,7 @@ if [ ! -f Makefile ]; then
14
echo "Cloning i-d-template into lib for default configuration."
12
15
echo "Note: Until setup is complete, the editor's copy will not be updated."
13
16
git clone https://github.com/martinthomson/i-d-template lib
- echo "PRE_SETUP := true" >Makefile
- cat lib/template/Makefile >>Makefile
17
+ cp lib/template/Makefile Makefile
18
fi
19
20
make .targets.mk
0 commit comments