File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -42,16 +42,16 @@ deepclean: clean
42
42
43
43
# Install the package in editable mode.
44
44
install :
45
- pdm sync --prod
45
+ pdm install --prod
46
46
47
47
# Install the package in editable mode with specific optional dependencies.
48
48
dev-% : install
49
- pdm sync --lockfile pdm.dev.lock --no-default --dev --group $*
49
+ pdm install --lockfile pdm.dev.lock --no-default --dev --group $*
50
50
51
51
# Prepare the development environment.
52
52
# Install the package in editable mode with all optional dependencies and pre-commit hook.
53
53
dev : install
54
- pdm sync --lockfile pdm.dev.lock
54
+ pdm install --lockfile pdm.dev.lock
55
55
if [ " $( CI) " != " true" ] && command -v pre-commit > /dev/null 2>&1 ; then pre-commit install; fi
56
56
57
57
# Install standalone tools
Original file line number Diff line number Diff line change @@ -44,16 +44,16 @@ deepclean: clean
44
44
45
45
# Install the package in editable mode.
46
46
install:
47
- pdm sync --prod
47
+ pdm install --prod
48
48
49
49
# Install the package in editable mode with specific optional dependencies.
50
50
dev-%: install
51
- pdm sync --lockfile pdm.dev.lock --no-default --dev --group $*
51
+ pdm install --lockfile pdm.dev.lock --no-default --dev --group $*
52
52
53
53
# Prepare the development environment.
54
54
# Install the package in editable mode with all optional dependencies and pre-commit hook.
55
55
dev: install
56
- pdm sync --lockfile pdm.dev.lock
56
+ pdm install --lockfile pdm.dev.lock
57
57
if [ "$(CI)" != "true" ] && command -v pre-commit > /dev/null 2>&1 ; then pre-commit install; fi
58
58
59
59
# Install standalone tools
You can’t perform that action at this time.
0 commit comments