Skip to content

Commit a6161d1

Browse files
authored
Merge pull request #54 from ergebnis/fix/dash
Fix: Add missing dash
2 parents 79a5e09 + d235ea4 commit a6161d1

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

CHANGELOG.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## Unreleased
88

9-
For a full diff see [`1.2.0...main`][1.2.0...main].
9+
For a full diff see [`1.2.1...main`][1.2.1...main].
10+
11+
## [`1.2.1`][1.2.1]
12+
13+
For a full diff see [`1.2.0...1.2.1`][1.2.0...1.2.1].
14+
15+
### Fixed
16+
17+
- Added missing dash when specifying `working-dir` option ([#54]), by [@localheinz]
1018

1119
## [`1.2.0`][1.2.0]
1220

@@ -35,14 +43,17 @@ For a full diff see [`1.0.0...main`][1.0.0...main].
3543
[1.0.0]: https://github.com/ergebnis/.github/releases/tag/1.0.0
3644
[1.1.0]: https://github.com/ergebnis/.github/releases/tag/1.1.0
3745
[1.2.0]: https://github.com/ergebnis/.github/releases/tag/1.2.0
46+
[1.2.1]: https://github.com/ergebnis/.github/releases/tag/1.2.1
3847

3948
[ca7f15d...1.0.0]: https://github.com/ergebnis/.github/compare/ca7f15d...1.0.0
4049
[1.0.0...1.1.0]: https://github.com/ergebnis/.github/compare/1.0.0...1.1.0
4150
[1.1.0...1.2.0]: https://github.com/ergebnis/.github/compare/1.1.0...1.2.0
42-
[1.2.0...main]: https://github.com/ergebnis/.github/compare/1.2.0...main
51+
[1.2.0...1.2.1]: https://github.com/ergebnis/.github/compare/1.2.0...1.2.1
52+
[1.2.1...main]: https://github.com/ergebnis/.github/compare/1.2.1...main
4353

4454
[#47]: https://github.com/ergebnis/.github/pull/47
4555
[#48]: https://github.com/ergebnis/.github/pull/48
4656
[#52]: https://github.com/ergebnis/.github/pull/52
57+
[#54]: https://github.com/ergebnis/.github/pull/54
4758

4859
[@localheinz]: https://github.com/localheinz

actions/composer/install/run.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ if [[ ! -d ${workingDirectory} ]]; then
1010
fi
1111

1212
if [[ ${dependencies} == "lowest" ]]; then
13-
composer update --ansi --no-interaction --no-progress --prefer-lowest -working-dir="${workingDirectory}"
13+
composer update --ansi --no-interaction --no-progress --prefer-lowest --working-dir="${workingDirectory}"
1414

1515
exit $?
1616
fi
1717

1818
if [[ ${dependencies} == "locked" ]]; then
19-
composer install --ansi --no-interaction --no-progress -working-dir="${workingDirectory}"
19+
composer install --ansi --no-interaction --no-progress --working-dir="${workingDirectory}"
2020

2121
exit $?
2222
fi
2323

2424
if [[ ${dependencies} == "highest" ]]; then
25-
composer update --ansi --no-interaction --no-progress -working-dir="${workingDirectory}"
25+
composer update --ansi --no-interaction --no-progress --working-dir="${workingDirectory}"
2626

2727
exit $?
2828
fi

0 commit comments

Comments
 (0)