Skip to content

Commit c8df361

Browse files
fix: argument order for composer create-project in tests
1 parent 22fb07e commit c8df361

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/functionaltests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
ini-values: opcache.fast_shutdown=0
2727

2828
- name: "Create composer project - No install"
29-
run: composer create-project neos/flow-base-distribution ${{ env.FLOW_DIST_FOLDER }} --prefer-dist --no-progress --no-install "~${{ matrix.flow-version }}"
29+
run: composer create-project --prefer-dist --no-progress --no-install neos/flow-base-distribution ${{ env.FLOW_DIST_FOLDER }} "~${{ matrix.flow-version }}"
3030

3131
- name: "Allow neos composer plugin"
3232
run: composer config --no-plugins allow-plugins.neos/composer-plugin true

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
ini-values: opcache.fast_shutdown=0
2727

2828
- name: "Create composer project - No install"
29-
run: composer create-project neos/flow-base-distribution ${{ env.FLOW_DIST_FOLDER }} --prefer-dist --no-progress --no-install "~${{ matrix.flow-version }}"
29+
run: composer create-project --prefer-dist --no-progress --no-install neos/flow-base-distribution ${{ env.FLOW_DIST_FOLDER }} "~${{ matrix.flow-version }}"
3030

3131
- name: "Allow neos composer plugin"
3232
run: composer config --no-plugins allow-plugins.neos/composer-plugin true

0 commit comments

Comments
 (0)