Skip to content

Commit 04a64e4

Browse files
committed
More fixy things
1 parent 2dcd308 commit 04a64e4

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
}
1111
},
1212
"forwardPorts": [],
13-
"postCreateCommand": "mvn -q -DskipTests=true package || true"
14-
}
13+
"postCreateCommand": "./.devcontainer/setup.sh"
14+
}

.devcontainer/setup.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
# Disable Git LFS in Codespaces automatically
3+
git lfs uninstall || true
4+
rm -f "$(git rev-parse --git-dir)/hooks/pre-push" || true
5+
mvn -q -DskipTests=true package || true

0 commit comments

Comments
 (0)